manifest.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "manifest_version": 3,
  3. "name": "DeNet",
  4. "description": "Growing more twitter followers with Denet",
  5. "version": "1.1.3",
  6. "background": {
  7. "service_worker": "/js/background.js"
  8. },
  9. "icons": {
  10. "16": "/logo/16.png",
  11. "32": "/logo/32.png",
  12. "48": "/logo/48.png",
  13. "128": "/logo/128.png"
  14. },
  15. "action": {
  16. "default_popup": "popup.html"
  17. },
  18. "content_scripts": [
  19. {
  20. "matches": [
  21. "<all_urls>"
  22. ],
  23. "run_at": "document_start",
  24. "js": [
  25. "/js/content_help.js"
  26. ],
  27. "css": [
  28. "/css/content_help.css"
  29. ]
  30. },
  31. {
  32. "matches": [
  33. "https://*.twitter.com/*",
  34. "https://twitter.com/*",
  35. "https://www.facebook.com/*",
  36. "https://facebook.com/*",
  37. "*://testh5.denetme.net/*",
  38. "*://h5.denetme.net/*",
  39. "*://preh5.denetme.net/*"
  40. ],
  41. "run_at": "document_idle",
  42. "js": [
  43. "/js/content.js"
  44. ]
  45. }
  46. ],
  47. "host_permissions": [
  48. "<all_urls>",
  49. "*://*.twitter.com/*",
  50. "*://twitter.com/*",
  51. "*://*.facebook.com/*",
  52. "*://facebook.com/*",
  53. "*://testh5.denetme.net/*",
  54. "*://h5.denetme.net/*",
  55. "*://preh5.denetme.net/*"
  56. ],
  57. "permissions": [
  58. "tabs",
  59. "action",
  60. "cookies",
  61. "activeTab",
  62. "scripting",
  63. "storage",
  64. "alarms"
  65. ],
  66. "options_page": "options.html",
  67. "web_accessible_resources": [
  68. {
  69. "resources": [
  70. "/iframe/publish.html",
  71. "/iframe/red-packet.html",
  72. "/iframe/home.html",
  73. "/iframe/publish-tips.html",
  74. "/iframe/bind-tweet.html",
  75. "/iframe/nft-card.html",
  76. "/iframe/nft-group.html",
  77. "/iframe/nft-group-card.html",
  78. "/iframe/buy-nft.html",
  79. "/iframe/group-card.html",
  80. "/iframe/popup-page.html",
  81. "/iframe/popup-page.html",
  82. "/iframe/tab-group.html",
  83. "/iframe/joined-group-list.html"
  84. ],
  85. "matches": [
  86. "<all_urls>"
  87. ]
  88. }
  89. ]
  90. }