Examine source code of VT4Browsers

Inspect and view changes in VT4Browsers source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "VT4Browsers",
  "version": "4.0.9",
  "default_locale": "en",
  "description": "VirusTotal Browser Extension.",
  "icons": {
    "16": "icons/vt-16.png",
    "32": "icons/vt-32.png"
  },
  "browser_action": {
    "default_icon": "icons/vt_logo.png",
    "default_popup": "src/options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*.virustotal.com/*"
      ],
      "css": [
        "src/styles.css"
      ],
      "js": [
        "src/vt-augment.min.js",
        "src/jquery.min.js",
        "src/virustotal.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "src/jquery.min.js",
      "src/stackdriver-errors.js",
      "src/background.js"
    ]
  },
  "options_ui": {
    "page": "src/options.html"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "contextMenus",
    "downloads",
    "storage",
    "<all_urls>"
  ],
  "commands": {
    "vthighlight": {
      "description": "One-off highlighting on current page"
    },
    "vtenrich": {
      "description": "One-off enrichment on current page"
    }
  },
  "web_accessible_resources": [
    "icons/vt-logo.svg"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}