manifest.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "manifest_version": 2,
  3. "version": "1.4",
  4. "name": "TEAM提醒",
  5. "description": "TEAM消息提醒",
  6. "icons": {
  7. "16": "images/icon-google.png",
  8. "48": "images/icon-google.png",
  9. "128": "images/icon-google.png"
  10. },
  11. "browser_action": {
  12. "default_icon": {
  13. "19": "images/icon-google.png",
  14. "38": "images/icon-google.png"
  15. },
  16. "default_title": "TEAM消息提醒",
  17. "default_popup": "popup.html"
  18. },
  19. "options_page": "options.html",
  20. "content_scripts": [
  21. {
  22. "js": ["js/content.js"],
  23. "matches": [ "https://*/*", "http://*/*" ],
  24. "run_at": "document_end"
  25. }
  26. ],
  27. "background": {
  28. "scripts": [
  29. "js/jquery-3.1.1.min.js",
  30. "js/base.js",
  31. "js/wtws.js",
  32. "js/notify.js"
  33. ]
  34. },
  35. "permissions": [
  36. "notifications",
  37. "cookies",
  38. "storage",
  39. "tabs"
  40. ],
  41. "web_accessible_resources": [
  42. "images/*.png"
  43. ]
  44. }