vTxAnnotator

vTxAnnotator

Introducing the vTxAnnotator Chrome Extension, powered by VirtualTx! This handy utility overlays directly on top of your current…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "vTxAnnotator",
  "version": "1.0",
  "manifest_version": 3,
  "action": {
    "default_title": "Click to show anotator",
    "default_icon": {
      "16": "/assets/16px.png",
      "32": "/assets/48px.png"
    }
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "background": {
    "service_worker": "vtxannotator.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.html",
        "*.css",
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "/assets/16px.png",
    "48": "/assets/48px.png",
    "128": "/assets/128px.png"
  }
}