VT4Browsers

VT4Browsers

Scan your downloads with VirusTotal before storing them, free and easy. More information at: https://docs.virustotal.com/docs/browser-extensions#vt4browsers. Contribute your domain name resolutions to the security community.

Merlin
Additional files are visible only to premium users

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"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}