Smart Copy - Copy in Minutes, Not Days

Smart Copy - Copy in Minutes, Not Days

Say goodbye to copywriting woes and hello to Smart Copy, the only AI writing tool that can create, remix, and expand copy in a snap.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Smart Copy - Copy in Minutes, Not Days",
  "short_name": "Smart Copy",
  "description": "Say goodbye to copywriting woes and hello to Smart Copy, the only AI writing tool that can create, remix, and expand copy in a snap.",
  "version": "1.9.0",
  "author": "Smart Copy",
  "action": {
    "default_title": "Smart Copy",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "./static/logo/16.png",
      "32": "./static/logo/32.png",
      "48": "./static/logo/48.png",
      "128": "./static/logo/128.png"
    }
  },
  "icons": {
    "16": "./static/logo/16.png",
    "32": "./static/logo/32.png",
    "48": "./static/logo/48.png",
    "128": "./static/logo/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "vendor.js",
        "text-selection-handler.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://docs.google.com/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "docs-contentscript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "text-selection-handler.css",
        "text-selection-handler.js",
        "docs-contentscript.js",
        "docs-canvas.js",
        "*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "scripting",
    "storage",
    "contextMenus"
  ],
  "content_security_policy": {
    "extension-pages": "script-src 'self' 'wasm-unsafe-eval'; img-src 'self'"
  },
  "offline_enabled": false,
  "minimum_chrome_version": "88"
}