Guest User

Untitled

a guest
Apr 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. chrome.tabs.create({
  2. "url": chrome.extension.getURL("yoururl.html"),
  3. "pinned": true
  4. },
  5. function(tab) {
  6. tab.highlighted = true;
  7. tab.active = true;
  8. });
  9.  
  10. "permissions": [
  11. "background"
  12. ],
Add Comment
Please, Sign In to add comment