Examine source code of Best Speedtest Tool

Inspect and view changes in Best Speedtest Tool source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "__MSG_extName__",
  "version": "1.2.1",
  "short_name": "Speedtest",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "browser_action": {
    "default_icon": {
      "19": "images/gauge-19.png",
      "38": "images/gauge-38.png"
    },
    "default_title": "Speedtest",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "images/gauge-16.png",
    "48": "images/gauge-48.png",
    "128": "images/gauge-128.png"
  },
  "permissions": [
    "background",
    "storage",
    "*://*/*",
    "webNavigation",
    "webRequestBlocking",
    "webRequest",
    "tabs"
  ],
  "background": {
    "page": "/background.html"
  },
  "options_page": "index.html?options=true",
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.speedtest.net https://www.googletagmanager.com/gtm.js https://www.google-analytics.com/analytics.js; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "scripts/page.js",
        "scripts/extended.js",
        "scripts/export.js",
        "webspeed.js"
      ],
      "run_at": "document_end"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}