De-Trumper

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

De-Trumper क्या है?

De-Trumper subyraman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces mentions of Donald Trump with the text of your choosing."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में De-Trumper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम De-Trumper De-Trumper
ID kglbhgihidejfkdlkoclnllbanbblbjb
आधिकारिक URL https://chromewebstore.google.com/detail/de-trumper/kglbhgihidejfkdlkoclnllbanbblbjb
विवरण Replaces mentions of Donald Trump with the text of your choosing.
फ़ाइल का आकार 24.19 KB
स्थापना संख्या 14
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2015-12-27
प्रकाशन तिथि 2015-12-27
रेटिंग 3.67/5 कुल 3 रेटिंग्स
डेवलपर subyraman
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
}