CopyBee.ai

CopyBee.ai

AI Copy Writer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CopyBee.ai",
  "description": "AI Copy Writer",
  "version": "3.0",
  "icons": {
    "16": "/images/16.png",
    "32": "/images/32.png",
    "48": "/images/48.png",
    "128": "/images/128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "bookmarks",
    "downloads"
  ],
  "background": {
    "scripts": [
      "jquery.min.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "main.js"
      ],
      "css": [
        "style.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "*://*.copybee.ai/*"
      ],
      "js": [
        "jquery.min.js",
        "iframe.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "images/button.png"
  ]
}