manifest.json 1.8 KB

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