De-Trumper

Replaces mentions of Donald Trump with the text of your choosing.

Qu'est-ce que De-Trumper ?

De-Trumper est une extension Chrome développée par subyraman, et sa fonction principale est "Replaces mentions of Donald Trump with the text of your choosing.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension De-Trumper

Téléchargez les fichiers d'extension De-Trumper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Tired of seeing mentions of Donald Trump? Or maybe you love seeing Donald Trump, and want to make him more awesome?

Replace mentions of Donald Trump with whatever text you choose. The default is "Cutie Toupeepants" but feel free to change it to whatever else you'd like in the options. Possibilities include:

- "please stop talking about this crazy man"
- "Mr. Cuddlebunches"
- "(╯°□°)╯︵ ┻━┻    ¯\_(ツ)_/¯"

The code is built on a fork of the wonderful Downworthy extension. Many thanks to everyone who contributed to that.                    

Informations de Base sur l'Extension

Nom De-Trumper De-Trumper
ID kglbhgihidejfkdlkoclnllbanbblbjb
URL Officiel https://chromewebstore.google.com/detail/de-trumper/kglbhgihidejfkdlkoclnllbanbblbjb
Description Replaces mentions of Donald Trump with the text of your choosing.
Taille du Fichier 24.19 KB
Nombre d'Installations 14
Version Actuelle 0.0.1
Dernière Mise à Jour 2015-12-27
Date de Publication 2015-12-27
Évaluation 3.67/5 Total 3 Évaluations
Développeur subyraman
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "De-Trumper",
    "version": "0.0.1",
    "description": "Replaces mentions of Donald Trump with the text of your choosing.",
    "permissions": [
        "storage"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon19-on.png",
        "default_title": "Toggle De-Trumper"
    },
    "content_security_policy": "default-src 'none'; script-src 'self'",
    "options_page": "options.html"
}