网速管家Speedtest

网速管家Speedtest

在工具栏中测试Wi-Fi和宽带网速,以及检测当前浏览网页打开速度

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "网速管家Speedtest",
  "description": "在工具栏中测试Wi-Fi和宽带网速,以及检测当前浏览网页打开速度",
  "version": "1.1.1",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "favicon.png"
  },
  "icons": {
    "16": "favicon.png",
    "128": "favicon.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/contentscript.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "*://*/*",
    "tabs",
    "geolocation"
  ],
  "background": {
    "page": "background.html"
  },
  "content_security_policy": "script-src 'self' https://file2.speedtest.cn https://map.speedtest.cn https://webapi.amap.com 'unsafe-eval'; object-src 'self'",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}