Vector Vein

Vector Vein

Run AI workflows from your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Vector Vein",
  "version": "0.0.2",
  "description": "Run AI workflows from your browser",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_scripts": [
    {
      "js": [
        "content_scripts/index.js",
        "content_scripts/JSDOMParser.js",
        "content_scripts/Readability-readerable.js",
        "content_scripts/Readability.js",
        "content_scripts/turndown.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "notifications"
  ],
  "host_permissions": [
    "https://vectorvein.com/*"
  ],
  "options_page": "options/options.html",
  "action": {
    "default_popup": "popup/popup.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}