De-Trumper

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

什麼是De-Trumper?

De-Trumper是由subyraman開發的Chrome擴展程式,該擴展的主要功能是“Replaces mentions of Donald Trump with the text of your choosing.”。

擴展截圖

screenshot
screenshot
screenshot

下載De-Trumper擴展crx文件

下載De-Trumper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
}