Rural Broadband Simulator

This extension will simulate a slow internet connection.

Wat is Rural Broadband Simulator?

Rural Broadband Simulator is een Chrome-extensie ontwikkeld door Griffith Baker, en de belangrijkste functie is "This extension will simulate a slow internet connection.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Rural Broadband Simulator

Download Rural Broadband Simulator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        The FCC recently filed a "notice of proposed rulemaking" to include mobile broadband in the broadband standard, increasing the amount of rural area served but effectively lowering the minimum broadband speed to 10 Mbps/1 Mbps from its original 25 Mbps/3 Mbps. To demonstrate the possible impact of allowing mobile broadband to serve as "adequate broadband," this extension will help simulate a slow (rural) internet connection. 

Check out the source code on GitHub: https://github.com/PostsDesert/RuralBroadbandSimulator                    

Basisinformatie over de Extensie

Naam Rural Broadband Simulator Rural Broadband Simulator
ID dinlajfddccafgpcjeialjbgdohihedo
Officiële URL https://chromewebstore.google.com/detail/rural-broadband-simulator/dinlajfddccafgpcjeialjbgdohihedo
Beschrijving This extension will simulate a slow internet connection.
Bestandsgrootte 887 KB
Aantal Installaties 31
Huidige Versie 1.0.1
Laatst Bijgewerkt 2019-01-23
Publicatiedatum 2019-01-22
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Griffith Baker
Betalingswijze free
Ondersteunde Talen en-US
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",
        "",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "js\/popup.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/throttler.js"
        ],
        "persistent": true
    }
}