Trump is a Chump

Replace the names of politicians with words of your own!

Was ist Trump is a Chump?

Trump is a Chump ist eine Chrome-Erweiterung, die von chumpextension entwickelt wurde, und ihr Hauptmerkmal ist "Replace the names of politicians with words of your own!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Trump is a Chump-Erweiterungs-CRX-Datei herunterladen

Laden Sie Trump is a Chump-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Trump is a Chump Trump is a Chump
ID nlcibpbonljgjeiajboacpdblbibdocb
Offizielle URL https://chrome.google.com/webstore/detail/trump-is-a-chump/nlcibpbonljgjeiajboacpdblbibdocb
Beschreibung Replace the names of politicians with words of your own!
Dateigröße 115 KB
Installationsanzahl 129
Aktuelle Version 0.2.1
Letztes Update 2020-10-31
Veröffentlichungsdatum 2020-03-24
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler chumpextension
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
}