CHATGPT Prodigy: AutoGPT with Internet Access

CHATGPT Prodigy: AutoGPT with Internet Access

Combined capabilities of AutoGPT and ChatGPT. Let ChatGPT automate your tasks. Save Output into Books/Articles and much more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.0",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "webRequest",
    "https://html.duckduckgo.com/*",
    "https://www.bing.com/*",
    "https://www.google.com/*",
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "background/bg.js"
    ],
    "persistent": true
  },
  "browser_action": {},
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "content-scripts/mainUI.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true,
    "chrome_style": true
  },
  "web_accessible_resources": [
    "content-scripts/mainUI.css",
    "icons/icon48.png"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{b3a2226c-2415-4ee2-b739-27d9ab6b07c1}"
    }
  }
}