Rural Broadband Simulator

This extension will simulate a slow internet connection.

Qu'est-ce que Rural Broadband Simulator ?

Rural Broadband Simulator est une extension Chrome développée par Griffith Baker, et sa fonction principale est "This extension will simulate a slow internet connection.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Rural Broadband Simulator

Téléchargez les fichiers d'extension Rural Broadband Simulator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Rural Broadband Simulator Rural Broadband Simulator
ID dinlajfddccafgpcjeialjbgdohihedo
URL Officiel https://chromewebstore.google.com/detail/rural-broadband-simulator/dinlajfddccafgpcjeialjbgdohihedo
Description This extension will simulate a slow internet connection.
Taille du Fichier 887 KB
Nombre d'Installations 31
Version Actuelle 1.0.1
Dernière Mise à Jour 2019-01-23
Date de Publication 2019-01-22
Évaluation 5.00/5 Total 2 Évaluations
Développeur Griffith Baker
Type de Paiement free
Langues Prises en Charge 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
    }
}