Vector Ink

Vector Ink

The Vector Ink Chrome Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "1.2",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js",
        "ui.js"
      ]
    }
  ],
  "action": {
    "default_icon": "icon16.png",
    "default_popup": "popup.html"
  }
}