Network Defence

Network Defence

Boost productivity with scheduled site blocking,custom blocklist,and password protection

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Network Defence",
  "description": "Boost productivity with scheduled site blocking,custom blocklist,and password protection",
  "version": "1.2.0",
  "manifest_version": 3,
  "icons": {
    "16": "./NPD LOGO 48x48 ,.png",
    "48": "./NPD LOGO 48x48 ,.png",
    "128": "./NPD LOGO 128x128,.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Network Defence",
    "default_icon": "./NPD LOGO 48x48 ,.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "declarativeNetRequest"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}