Ctrl-Alt-Right

Replaces mentions of the "alt-right" or "Alternative right" with phrases that more accurately describe their ideology.

Co to jest Ctrl-Alt-Right?

Ctrl-Alt-Right to rozszerzenie Chrome opracowane przez Heather Akers-Healy, a jego główną funkcją jest „Replaces mentions of the "alt-right" or "Alternative right" with phrases that more accurately describe their ideology.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Ctrl-Alt-Right

Pobierz pliki rozszerzeń Ctrl-Alt-Right w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Replaces mentions of the "alt-right" or "Alternative right" with phrases that more accurately describe their ideology.                    

Podstawowe informacje o rozszerzeniu

Nazwa Ctrl-Alt-Right Ctrl-Alt-Right
ID ghnieianpmlebkcjbdeelojakniikkjh
Oficjalny URL https://chrome.google.com/webstore/detail/ctrl-alt-right/ghnieianpmlebkcjbdeelojakniikkjh
Opis Replaces mentions of the "alt-right" or "Alternative right" with phrases that more accurately describe their ideology.
Rozmiar pliku 206 KB
Liczba instalacji 14
Aktualna Wersja 0.2.0
Ostatnia Aktualizacja 2016-11-14
Data Publikacji 2016-11-14
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Heather Akers-Healy
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ctrl-Alt-Right",
    "version": "0.2.0",
    "description": "",
    "author": "",
    "browser_action": {
        "default_title": "Use this to open the popup",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "replace.js"
            ],
            "run_at": "document_end"
        }
    ]
}