manifest.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "manifest_version": 3,
  3. "name": "Multi-Page Automation",
  4. "version": "1.1.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. "<all_urls>"
  16. ],
  17. "background": {
  18. "service_worker": "background.js"
  19. },
  20. "side_panel": {
  21. "default_path": "sidepanel/sidepanel.html"
  22. },
  23. "content_scripts": [
  24. {
  25. "matches": [
  26. "https://auth0.openai.com/*",
  27. "https://auth.openai.com/*",
  28. "https://accounts.openai.com/*"
  29. ],
  30. "js": ["content/utils.js", "content/signup-page.js"],
  31. "run_at": "document_idle"
  32. },
  33. {
  34. "matches": [
  35. "https://mail.qq.com/*",
  36. "https://wx.mail.qq.com/*"
  37. ],
  38. "js": ["content/utils.js", "content/qq-mail.js"],
  39. "all_frames": true,
  40. "run_at": "document_idle"
  41. },
  42. {
  43. "matches": [
  44. "https://mail.163.com/*"
  45. ],
  46. "js": ["content/utils.js", "content/mail-163.js"],
  47. "all_frames": true,
  48. "run_at": "document_idle"
  49. },
  50. {
  51. "matches": [
  52. "https://duckduckgo.com/email/settings/autofill*"
  53. ],
  54. "js": ["content/utils.js", "content/duck-mail.js"],
  55. "run_at": "document_idle"
  56. },
  57. {
  58. "matches": [
  59. "https://inbucket.j2to.de/*"
  60. ],
  61. "js": ["content/utils.js", "content/inbucket-mail.js"],
  62. "all_frames": true,
  63. "run_at": "document_idle"
  64. }
  65. ],
  66. "action": {
  67. "default_icon": {
  68. "16": "icons/icon16.png",
  69. "48": "icons/icon48.png",
  70. "128": "icons/icon128.png"
  71. }
  72. },
  73. "icons": {
  74. "16": "icons/icon16.png",
  75. "48": "icons/icon48.png",
  76. "128": "icons/icon128.png"
  77. }
  78. }