Guest User

Untitled

a guest
Mar 21st, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. "content_scripts": [{
  2. "matches": ["http://myUrl1.com/*"],
  3. ...
  4. }]
  5.  
  6. "content_scripts": [{
  7. "matches": [ "http://*/*", "https://*/*" ],
  8. ...
  9. }]
  10.  
  11. "permissions": [
  12. ...
  13. "http://*/*"
  14. "https://*/*"
  15. ],
  16. "background": {
  17. "scripts": ["background.js"]
  18. },
  19. ...
  20.  
  21. const ALLOWED_URL = '...'; // Разрешенный URL
  22.  
  23. // отслеживаем изменение во вкладках
  24. chrome.tabs.onUpdated.addListener(function(tabId, changeInfo) {
  25. if(changeInfo.status === 'completed' && changeInfo.url === ALLOWED_URL) {
  26.  
  27. // запускаем content-script
  28. chrome.tabs.executeScript(tabId, {
  29. file: 'content-script.js'
  30. });
  31. }
  32. });
Add Comment
Please, Sign In to add comment