Rural Broadband Simulator

Rural Broadband Simulator

This extension will simulate a slow internet connection.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Rural Broadband Simulator",
  "description": "This extension will simulate a slow internet connection.",
  "version": "1.0.1",
  "browser_action": {
    "default_icon": "icons/icon-16.png",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "debugger",
    "tabs",
    "<all_urls>",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "js/popup.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/throttler.js"
    ],
    "persistent": true
  }
}