Guest User

Untitled

a guest
Apr 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. {
  2. "manifest_version": 2,
  3.  
  4. "name": "tabs",
  5. "description": "testing tabs",
  6. "version": "1.0.4",
  7. "icons": { "128": "icon_128.png" },
  8. "browser_action": {
  9. "default_icon": "icon.png",
  10. "default_title": "A popup will come here"
  11. },
  12. "background": {
  13. "scripts": ["background.js"]
  14. },
  15. "permissions": ["tabs", "*://*/*", "background"]
  16. }
  17.  
  18. chrome.tabs.query({}, function(tabs) {
  19. for(var i= 0; i < tabs.length; i++) {
  20. chrome.tabs.executeScript(null, {
  21. code: "console.log('wow');"
  22. });
  23. }
  24.  
  25. });
Add Comment
Please, Sign In to add comment