Trump is a Chump

Replace the names of politicians with words of your own!

¿Qué es Trump is a Chump?

Trump is a Chump es una extensión de Chrome desarrollada por chumpextension, y su función principal es "Replace the names of politicians with words of your own!".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Trump is a Chump

Descarga archivos de extensión Trump is a Chump en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Trump is a Chump Trump is a Chump
ID nlcibpbonljgjeiajboacpdblbibdocb
URL Oficial https://chrome.google.com/webstore/detail/trump-is-a-chump/nlcibpbonljgjeiajboacpdblbibdocb
Descripción Replace the names of politicians with words of your own!
Tamaño del Archivo 115 KB
Cantidad de Instalaciones 129
Versión Actual 0.2.1
Última Actualización 2020-10-31
Fecha de Publicación 2020-03-24
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador chumpextension
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
}