BLACKLIST.GOV.AZ

BLACKLIST.GOV.AZ

This extension automatically blocks suspicious URLs when you visit them in real-time and helps you to surf in internet secure.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BLACKLIST.GOV.AZ",
  "author": "CERT.GOV.AZ",
  "description": "This extension automatically blocks suspicious URLs  when you visit them in real-time and helps you to surf in internet secure.",
  "version": "2.8.1",
  "permissions": [
    "activeTab",
    "storage",
    "webNavigation"
  ],
  "icons": {
    "16": "/assets/img/icon16.png",
    "48": "/assets/img/icon32.png",
    "128": "/assets/img/icon150.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "blocked.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}