Edredo AI Assistant

Edredo AI Assistant

It uses ChatGPT in the background to help you generate content and prepare questions on the platform.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Edredo AI Assistant",
  "description": "It uses ChatGPT in the background to help you generate content and prepare questions on the platform.",
  "default_locale": "en",
  "version": "0.0.2",
  "manifest_version": 3,
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "host_permissions": [
    "https://*.openai.com/"
  ],
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://dev-edredo-next.oslabs.app/*",
        "https://www.edredo.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "content-script.css"
      ]
    }
  ]
}