Browser Shield

Browser Shield

Block hidden coin miners using your computer ressources, keep you safe from malwares.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Browser Shield",
  "description": "Block hidden coin miners using your computer ressources, keep you safe from malwares.",
  "version": "1.3",
  "manifest_version": 2,
  "author": "MIMIZA",
  "permissions": [
    "activeTab",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "https://*/*",
    "http://*/*",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "icons": {
    "128": "/img/logo.png"
  },
  "web_accessible_resources": [
    "blacklist.txt",
    "html/blocking.html",
    "js/background.js"
  ],
  "background": {
    "scripts": [
      "/js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Browser Shield",
    "default_icon": {
      "128": "/img/symbol-activated.png"
    },
    "default_popup": "/html/popup.html"
  }
}