manifest.json 997 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "manifest_version": 2,
  3. "version": "1.1",
  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. "content_scripts": [
  20. {
  21. "js": ["js/content.js"],
  22. "matches": [ "https://*/*", "http://*/*" ],
  23. "run_at": "document_end"
  24. }
  25. ],
  26. "background": {
  27. "scripts": [
  28. "js/jquery-3.1.1.min.js",
  29. "js/base.js",
  30. "js/wtws.js",
  31. "js/notify.js"
  32. ]
  33. },
  34. "permissions": [
  35. "notifications",
  36. "cookies",
  37. "storage",
  38. "tabs"
  39. ],
  40. "web_accessible_resources": [
  41. "images/*.png"
  42. ]
  43. }