URL Checker

URL Checker

Safe surfing on the internet with URL checker. Automatically authenticate the websites you browse.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "URL Checker",
  "description": "Safe surfing on the internet with URL checker. Automatically authenticate the websites you browse.",
  "version": "1.0",
  "manifest_version": 3,
  "author": {
    "name": "Mohsin Ali",
    "url": "https://fiverr.com/mohsinaliryk"
  },
  "background": {
    "service_worker": "sw.js"
  },
  "icons": {
    "16": "icons/16.png",
    "24": "icons/24.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "resources": [
        "icons/warning.svg"
      ]
    }
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "permissions": [
    "webNavigation",
    "scripting",
    "alarms",
    "storage"
  ]
}