manifest.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "manifest_version": 3,
  3. "name": "Multi-Page Automation",
  4. "version": "1.0.0",
  5. "description": "Automates multi-step OAuth registration workflow",
  6. "permissions": [
  7. "sidePanel",
  8. "tabs",
  9. "webNavigation",
  10. "storage",
  11. "scripting",
  12. "activeTab"
  13. ],
  14. "host_permissions": [
  15. "http://154.26.182.181:8317/*",
  16. "https://auth0.openai.com/*",
  17. "https://auth.openai.com/*",
  18. "https://accounts.openai.com/*",
  19. "https://mail.qq.com/*",
  20. "https://wx.mail.qq.com/*",
  21. "https://chatgpt.com/*",
  22. "http://localhost/*"
  23. ],
  24. "background": {
  25. "service_worker": "background.js"
  26. },
  27. "side_panel": {
  28. "default_path": "sidepanel/sidepanel.html"
  29. },
  30. "content_scripts": [
  31. {
  32. "matches": ["http://154.26.182.181:8317/*"],
  33. "js": ["content/utils.js", "content/vps-panel.js"],
  34. "run_at": "document_idle"
  35. },
  36. {
  37. "matches": [
  38. "https://auth0.openai.com/*",
  39. "https://auth.openai.com/*",
  40. "https://accounts.openai.com/*"
  41. ],
  42. "js": ["content/utils.js", "content/signup-page.js"],
  43. "run_at": "document_idle"
  44. },
  45. {
  46. "matches": [
  47. "https://mail.qq.com/*",
  48. "https://wx.mail.qq.com/*"
  49. ],
  50. "js": ["content/utils.js", "content/qq-mail.js"],
  51. "all_frames": true,
  52. "run_at": "document_idle"
  53. },
  54. {
  55. "matches": ["https://chatgpt.com/*"],
  56. "js": ["content/utils.js", "content/chatgpt.js"],
  57. "run_at": "document_idle"
  58. }
  59. ],
  60. "action": {
  61. "default_icon": {
  62. "16": "icons/icon16.png",
  63. "48": "icons/icon48.png",
  64. "128": "icons/icon128.png"
  65. }
  66. },
  67. "icons": {
  68. "16": "icons/icon16.png",
  69. "48": "icons/icon48.png",
  70. "128": "icons/icon128.png"
  71. }
  72. }