manifest.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. "action": {
  59. "default_icon": {
  60. "16": "icons/icon16.png",
  61. "48": "icons/icon48.png",
  62. "128": "icons/icon128.png"
  63. }
  64. },
  65. "icons": {
  66. "16": "icons/icon16.png",
  67. "48": "icons/icon48.png",
  68. "128": "icons/icon128.png"
  69. }
  70. }