Miner Detector

Miner Detector

Detects monero coin-hive.com miner scripts on websites and let's you know in the url bar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Miner Detector",
  "manifest_version": 2,
  "version": "0.3",
  "background": {
    "scripts": [
      "./src/background.js"
    ]
  },
  "description": "Detects monero coin-hive.com miner scripts on websites and let's you know in the url bar",
  "author": "Alexander Sadovsky",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./src/contentScriptDetector.js"
      ],
      "run_at": "document_end"
    }
  ],
  "page_action": {
    "default_icon": "./src/icon.png"
  },
  "icons": {
    "16": "./src/icon-16.png",
    "32": "./src/icon.png",
    "64": "./src/icon-64.png",
    "128": "./src/icon-128.png"
  }
}