Network Purifier

Network Purifier

A network purifier that will filters content you don't want to view, such as advertisements, pornography, and violent content.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extension_name__",
  "version": "1.0.0",
  "description": "__MSG_extension_desc__",
  "default_locale": "en",
  "icons": {
    "16": "images/logo-16.png",
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  },
  "permissions": [
    "declarativeNetRequest",
    "storage",
    "tabs"
  ],
  "background": {
    "service_worker": "./js/service_worker.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "js/overlay.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/logo-16.png",
      "24": "images/logo-48.png",
      "32": "images/logo-48.png"
    },
    "default_title": "__MSG_extension_name__",
    "default_popup": "./popup/popup.html"
  },
  "options_page": "./options/options.html"
}