Paranoid Web Extension

Paranoid Web Extension

Secure Shopping, Child Protection, Block Adult sites, Casino, and Dangerous Sites

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_extName__",
  "version": "0.1.9.4",
  "homepage_url": "https://webparanoid.com",
  "description": "__MSG_extDescr__",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/",
    "<all_urls>"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/content-script.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/120.png"
  },
  "background": {
    "service_worker": "/js/background.js"
  },
  "options_ui": {
    "page": "popup.html",
    "browser_style": true
  },
  "action": {
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png",
      "128": "icons/120.png"
    },
    "default_title": "Click Me",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "blocknotification.js",
        "detectnotification.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}