manifest.json 941 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "manifest_version": 2,
  3. "name":"Study",
  4. "version": "1.0",
  5. "description":"A hello world extension!",
  6. "icons":{
  7. "128":"icon128.png",
  8. "48":"icon48.png",
  9. "16":"icon16.png"
  10. },
  11. "browser_action":{
  12. "default_icon":"icon16.png",
  13. "default_popup":"popup.html"
  14. },
  15. "options_page":"options.html",
  16. "background":{
  17. "scripts":[
  18. "jquery-3.1.1.min.js",
  19. "background.js"
  20. ],
  21. "persistent":false
  22. },
  23. "content_scripts": [
  24. {
  25. "matches": [
  26. "http://*/*",
  27. "https://*/*"
  28. ],
  29. "js": [
  30. "jquery-3.1.1.min.js",
  31. "content.js"
  32. ]
  33. }
  34. ],
  35. "permissions":[
  36. "storage",
  37. "notifications",
  38. "contextMenus",
  39. "http://*/*",
  40. "https://*/*",
  41. "tabs",
  42. "activeTab"
  43. ]
  44. }