Trump is a Chump

Replace the names of politicians with words of your own!

Co je Trump is a Chump?

Trump is a Chump je rozšíření Chrome vyvinuté chumpextension, a jeho hlavní funkcí je „Replace the names of politicians with words of your own!“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Trump is a Chump

Stáhněte si soubory rozšíření Trump is a Chump ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Is political news getting you down? Try out the Chump Trump extension! Every time you see the word "Trump" on your browser, it gets replaced by the word "Chump". Choose your own words to replace Trump with in the options page. Also works for Pence, Conway and McConnell.                    

Základní Informace o Rozšíření

Název Trump is a Chump Trump is a Chump
ID nlcibpbonljgjeiajboacpdblbibdocb
Oficiální URL https://chrome.google.com/webstore/detail/trump-is-a-chump/nlcibpbonljgjeiajboacpdblbibdocb
Popis Replace the names of politicians with words of your own!
Velikost souboru 115 KB
Počet instalací 129
Aktuální Verze 0.2.1
Poslední Aktualizace 2020-10-31
Datum Vydání 2020-03-24
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář chumpextension
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trump is a Chump",
    "version": "0.2.1",
    "description": "Replace the names of politicians with words of your own!",
    "content_scripts": [
        {
            "css": [
                ".\/content\/style.css"
            ],
            "js": [
                ".\/content\/main.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background\/index.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "logo_16.png",
        "48": "logo_48.png",
        "128": "logo_128.png"
    },
    "browser_action": {
        "default_popup": ".\/popup\/index.html"
    },
    "options_page": ".\/options\/index.html"
}