RKN Alert

Показывает цветом иконки, внесён ли сайт в реестр Роскомнадзора.

O que é RKN Alert?

RKN Alert é uma extensão do Chrome desenvolvida por Maris, e sua principal característica é "Показывает цветом иконки, внесён ли сайт в реестр Роскомнадзора.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão RKN Alert

Baixe arquivos de extensão RKN Alert no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Статья на Хабре - https://habr.com/post/425831/

Расширение показывает сайты и ip, заблокированные Роскомнадзором, в виде иконки. Если адрес или ip значатся в реестре, то иконка станет красной для данной вкладки. Это простое расширение. Работает быстро.

База РКН целиком скачивается из Интернета, затем периодически обновляется.

----------
Буду рад, если кто-то поделится базой вечно заблокированных сайтов (их около 4000).                    

Informações Básicas da Extensão

Nome RKN Alert RKN Alert
ID mdbffnnpjhnfmnenfkffjohdgjfeiodn
URL Oficial https://chromewebstore.google.com/detail/rkn-alert/mdbffnnpjhnfmnenfkffjohdgjfeiodn
Descrição Показывает цветом иконки, внесён ли сайт в реестр Роскомнадзора.
Tamanho do Arquivo 71.96 KB
Contagem de Instalações 1,236
Versão Atual 0.18.9
Última Atualização 2019-05-21
Data de Publicação 2019-05-20
Classificação 4.36/5 Total de 11 Avaliações
Desenvolvedor Maris
Tipo de Pagamento free
Idiomas Suportados ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RKN Alert",
    "short_name": "RKN Alert",
    "description": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u0446\u0432\u0435\u0442\u043e\u043c \u0438\u043a\u043e\u043d\u043a\u0438, \u0432\u043d\u0435\u0441\u0451\u043d \u043b\u0438 \u0441\u0430\u0439\u0442 \u0432 \u0440\u0435\u0435\u0441\u0442\u0440 \u0420\u043e\u0441\u043a\u043e\u043c\u043d\u0430\u0434\u0437\u043e\u0440\u0430.",
    "version": "0.18.9",
    "icons": {
        "16": "images\/logo_16.png",
        "32": "images\/logo_32.png",
        "48": "images\/logo_48.png"
    },
    "permissions": [
        "webRequest",
        "",
        "tabs"
    ],
    "content_scripts": [
        {
            "js": [
                "check.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "init.js",
            "lib\/punycode.js",
            "lib\/is_site_online.js",
            "lib\/dns.js",
            "lib\/domains.js",
            "lib\/icon.js",
            "lib\/indexed_db.js",
            "lib\/get_ip.js",
            "background.js"
        ]
    },
    "options_ui": {
        "open_in_tab": true,
        "chrome_style": true,
        "page": "options\/options.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/logo_16.png",
            "32": "images\/logo_32.png",
            "48": "images\/logo_48.png"
        },
        "default_title": "RKN Alert",
        "default_popup": "popup\/popup.html"
    }
}