Rural Broadband Simulator

This extension will simulate a slow internet connection.

Rural Broadband Simulator là gì?

Rural Broadband Simulator là một tiện ích mở rộng Chrome được phát triển bởi Griffith Baker, và tính năng chính của nó là "This extension will simulate a slow internet connection.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Rural Broadband Simulator

Tải xuống các tệp mở rộng Rural Broadband Simulator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Rural Broadband Simulator Rural Broadband Simulator
ID dinlajfddccafgpcjeialjbgdohihedo
URL Chính Thức https://chromewebstore.google.com/detail/rural-broadband-simulator/dinlajfddccafgpcjeialjbgdohihedo
Mô tả This extension will simulate a slow internet connection.
Kích Thước Tệp 887 KB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2019-01-23
Ngày Phát Hành 2019-01-22
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Griffith Baker
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}