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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
}