manifest.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. {
  2. "manifest_version": 3,
  3. "name": "多页面自动化",
  4. "version": "9.4.0",
  5. "description": "用于自动执行多步骤 OAuth 注册流程",
  6. "permissions": [
  7. "sidePanel",
  8. "alarms",
  9. "tabs",
  10. "webNavigation",
  11. "declarativeNetRequest",
  12. "debugger",
  13. "browsingData",
  14. "cookies",
  15. "storage",
  16. "scripting",
  17. "activeTab"
  18. ],
  19. "host_permissions": [
  20. "https://*.icloud.com/*",
  21. "https://*.icloud.com.cn/*",
  22. "<all_urls>"
  23. ],
  24. "background": {
  25. "service_worker": "background.js"
  26. },
  27. "declarative_net_request": {
  28. "rule_resources": [
  29. {
  30. "id": "icloud_headers",
  31. "enabled": true,
  32. "path": "rules.json"
  33. }
  34. ]
  35. },
  36. "side_panel": {
  37. "default_path": "sidepanel/sidepanel.html"
  38. },
  39. "content_scripts": [
  40. {
  41. "matches": [
  42. "https://auth0.openai.com/*",
  43. "https://auth.openai.com/*",
  44. "https://accounts.openai.com/*"
  45. ],
  46. "js": [
  47. "content/activation-utils.js",
  48. "content/utils.js",
  49. "content/signup-page.js"
  50. ],
  51. "run_at": "document_idle"
  52. },
  53. {
  54. "matches": [
  55. "https://mail.qq.com/*",
  56. "https://wx.mail.qq.com/*"
  57. ],
  58. "js": [
  59. "content/activation-utils.js",
  60. "content/utils.js",
  61. "content/qq-mail.js"
  62. ],
  63. "all_frames": true,
  64. "run_at": "document_idle"
  65. },
  66. {
  67. "matches": [
  68. "https://mail.163.com/*",
  69. "https://*.mail.163.com/*",
  70. "https://webmail.vip.163.com/*"
  71. ],
  72. "js": [
  73. "content/activation-utils.js",
  74. "content/utils.js",
  75. "content/mail-163.js"
  76. ],
  77. "all_frames": true,
  78. "run_at": "document_idle"
  79. },
  80. {
  81. "matches": [
  82. "https://www.icloud.com/*",
  83. "https://www.icloud.com.cn/*"
  84. ],
  85. "js": [
  86. "content/activation-utils.js",
  87. "content/utils.js",
  88. "content/icloud-mail.js"
  89. ],
  90. "all_frames": true,
  91. "run_at": "document_idle"
  92. },
  93. {
  94. "matches": [
  95. "https://duckduckgo.com/email/settings/autofill*"
  96. ],
  97. "js": [
  98. "content/activation-utils.js",
  99. "content/utils.js",
  100. "content/duck-mail.js"
  101. ],
  102. "run_at": "document_idle"
  103. }
  104. ],
  105. "action": {
  106. "default_icon": {
  107. "16": "icons/icon16.png",
  108. "48": "icons/icon48.png",
  109. "128": "icons/icon128.png"
  110. }
  111. },
  112. "icons": {
  113. "16": "icons/icon16.png",
  114. "48": "icons/icon48.png",
  115. "128": "icons/icon128.png"
  116. }
  117. }