Rural Broadband Simulator

This extension will simulate a slow internet connection.

Cos'è Rural Broadband Simulator?

Rural Broadband Simulator è un'estensione di Chrome sviluppata da Griffith Baker, e la sua funzione principale è "This extension will simulate a slow internet connection.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Rural Broadband Simulator

Scarica i file di estensione Rural Broadband Simulator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Rural Broadband Simulator Rural Broadband Simulator
ID dinlajfddccafgpcjeialjbgdohihedo
URL Ufficiale https://chromewebstore.google.com/detail/rural-broadband-simulator/dinlajfddccafgpcjeialjbgdohihedo
Descrizione This extension will simulate a slow internet connection.
Dimensione del File 887 KB
Conteggio Installazioni 31
Versione Corrente 1.0.1
Ultimo Aggiornamento 2019-01-23
Data di Pubblicazione 2019-01-22
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Griffith Baker
Tipo di Pagamento free
Lingue Supportate 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
    }
}