INK Copy Assistant

INK Copy Assistant

Perfect your writing with AI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Perfect your writing with AI.",
  "version": "1.1.5",
  "manifest_version": 3,
  "name": "INK Copy Assistant",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "storage",
    "activeTab",
    "system.display"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "ink-browser-action.png"
  },
  "icons": {
    "128": "ink-logo-new.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "script_1.js"
      ],
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "*://docs.google.com/document*",
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://trello.com/*",
        "*://onedrive.live.com/*",
        "*://docs.google.com/presentation*",
        "*://www.google.com/intl/ur/inputtools/try/",
        "*://www.google.com/search*",
        "*://www.authorize.net/*",
        "*://stripe.com/*",
        "*://www.paypal.com/*",
        "*://www.braintreepayments.com/*",
        "*://pay.amazon.com/*",
        "*://squareup.com/*",
        "*://home.bluesnap.com/*",
        "*://go.wepay.com/*",
        "*://www.2checkout.com/*",
        "*://www.dwolla.com/*",
        "*://www.skrill.com/*",
        "*://www.payoneer.com/*",
        "*://online.worldpay.com/*",
        "*://bitpay.com/*",
        "*://secure.bluepay.com/*",
        "*://globalgatewaye4.firstdata.com/*",
        "*://securionpay.com/*",
        "*://paylinedata.com/*",
        "*://cardstream.com/*",
        "*://alliedwallet.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "script_1.js",
        "script_2.js",
        "content.styles.css",
        "*.png",
        "*.svg",
        "*.gif"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}