DNS Defender

DNS Defender

这个扩展可以验证您访问的网站是否被DNS劫持,防止您的密码等私密信息被泄露,保障您安全上网

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "DNS Defender",
  "description": "这个扩展可以验证您访问的网站是否被DNS劫持,防止您的密码等私密信息被泄露,保障您安全上网",
  "version": "1.0.6",
  "background": {
    "service_worker": "./background.js"
  },
  "externally_connectable": {
    "matches": [
      "https://fyun.cc/*"
    ]
  },
  "permissions": [
    "alarms",
    "storage",
    "tabs",
    "activeTab",
    "scripting",
    "webRequest",
    "webNavigation",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/ico_16.png",
      "32": "/images/ico_32.png",
      "48": "/images/ico_48.png",
      "128": "/images/ico_128.png"
    }
  },
  "icons": {
    "16": "/images/ico_16.png",
    "32": "/images/ico_32.png",
    "48": "/images/ico_48.png",
    "128": "/images/ico_128.png"
  }
}