Removal of Net Neutrality Simulator

To demonstrate the impact of removing Net Neutrality, this extension slows your internet connection and blocks several websites

Что такое Removal of Net Neutrality Simulator?

Removal of Net Neutrality Simulator - это расширение Chrome, разработанное Keep Our Net Free, и его основная функция - "To demonstrate the impact of removing Net Neutrality, this extension slows your internet connection and blocks several websites".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Removal of Net Neutrality Simulator

Скачайте файлы расширений Removal of Net Neutrality Simulator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        With the FCC preparing to remove Title II restrictions on ISPs and destroy Net Neutrality, it is important that every citizen of the United States understands what the removal of Net Neutrality would entail.  This extension shows you what the ramifications of this decision would be by slowing all websites except for "sponsored sites", and blocking content those sites' competitors' websites.                    

Основная информация о расширении

Название Removal of Net Neutrality Simulator Removal of Net Neutrality Simulator
ID macmdnlopncdoehmjhfenfblflnohoen
Официальный URL https://chromewebstore.google.com/detail/removal-of-net-neutrality/macmdnlopncdoehmjhfenfblflnohoen
Описание To demonstrate the impact of removing Net Neutrality, this extension slows your internet connection and blocks several websites
Размер файла 63.23 KB
Количество установок 73
Текущая Версия 1.4
Последнее Обновление 2018-11-02
Дата публикации 2018-11-02
Рейтинг 5.00/5 Всего 39 оценок
Разработчик Keep Our Net Free
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/benjaminrsherman/no-nn-simulator
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Removal of Net Neutrality Simulator",
    "description": "To demonstrate the impact of removing Net Neutrality, this extension slows your internet connection and blocks several websites",
    "version": "1.4",
    "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",
        "",
        "contentSettings"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/nnn.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/jquery.js",
            "js\/throttler.js"
        ],
        "persistent": true
    }
}