ChatGPT for Ads

ChatGPT for Ads

The extension is an open source extension that helps marketing professionals create engaging and targeted ads easily and quickly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_title__",
  "description": "__MSG_desc__",
  "version": "1.1",
  "default_locale": "en",
  "action": {
    "default_popup": "index.html",
    "default_title": "__MSG_title__"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "cookies"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "/icon-16.png",
    "48": "/icon-48.png",
    "128": "/icon-128.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "worker.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}