Rural Broadband Simulator

This extension will simulate a slow internet connection.

Rural Broadband Simulator란 무엇입니까?

Rural Broadband Simulator은(는) Griffith Baker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will simulate a slow internet connection."입니다.

확장 프로그램 스크린샷

screenshot

Rural Broadband Simulator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Rural Broadband Simulator Rural Broadband Simulator
ID dinlajfddccafgpcjeialjbgdohihedo
공식 URL https://chromewebstore.google.com/detail/rural-broadband-simulator/dinlajfddccafgpcjeialjbgdohihedo
설명 This extension will simulate a slow internet connection.
파일 크기 887 KB
설치 횟수 31
현재 버전 1.0.1
최근 업데이트 2019-01-23
출시 날짜 2019-01-22
평점 5.00/5 총 2 개의 평점
개발자 Griffith Baker
결제 유형 free
지원되는 언어 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
    }
}