NoHack by Apozy

NoHack by Apozy

Apozy NoHack stops fraudulent websites, adverts and other online annoyances without slowing down browsing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Apozy, Inc.",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "19": "img/browsericons/icon19.png",
      "38": "img/browsericons/icon38.png"
    },
    "default_popup": "popup.html",
    "default_title": "Nohack by Apozy"
  },
  "commands": {
    "launch-element-picker": {
      "description": "__MSG_popupTipPicker__"
    },
    "launch-element-zapper": {
      "description": "__MSG_popupTipZapper__"
    },
    "launch-logger": {
      "description": "__MSG_popupTipLog__"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "/js/vapi.js",
        "/js/vapi-client.js",
        "/js/contentscript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": false,
      "js": [
        "/js/scriptlets/subscriber.js",
        "/js/scriptlets/notification.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extShortDesc__",
  "icons": {
    "16": "img/icon_16.png",
    "128": "img/icon_128.png"
  },
  "incognito": "split",
  "manifest_version": 2,
  "minimum_chrome_version": "45.0",
  "name": "NoHack by Apozy",
  "optional_permissions": [
    "file:///*"
  ],
  "permissions": [
    "contextMenus",
    "downloads",
    "history",
    "privacy",
    "storage",
    "tabs",
    "unlimitedStorage",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "short_name": "NoHack",
  "storage": {
    "managed_schema": "managed_storage.json"
  },
  "version": "1.4.5",
  "web_accessible_resources": [
    "contentmodal.html",
    "js/contentmodal.js",
    "lib/materialize/materialize.css",
    "lib/materialize/materialize.js",
    "/web_accessible_resources/*"
  ]
}