Replace Trump

Replace Trump replaces the word 'Trump' with any word(s) you choose.

Replace Trump란 무엇입니까?

Replace Trump은(는) Olu Omoniyi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace Trump replaces the word 'Trump' with any word(s) you choose."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Replace Trump 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        REPLACE TRUMP WITH ANY WORD/PHRASE YOU CHOOSE. 
ADDED BONUS: YOU ALSO GET TO READ SOME OF TRUMP MORE (IN)FAMOUS QOUTES ON THE OPTIONS PAGE.
--------------------------
I wrote this plugin for a friend who ever since Trump became president couldn't stand the amount of "Trump" related news on his social media feeds, news websites and literally everywhere he looked.

So being a great friend I decided to make the Internet a bit more bearable for him and  the Replace Trump plugin came to life, basically it replaces any instance of "Trump" on any website (it even works on the actual Trump website) with any word you choose, simples really.

My friend ended up choosing "McBallFace", however you can choose any word or group of words you desire.

--------------------------
Instructions:
First off, it comes up with "Undefined", all you need to do is click on the tiny Trump icon in your extensions, specify the text to replace Trump with, hit enter and boom! Trump is gone!

--------------------------

--------------------------
Updates versions 1.2.2:
Add qoutes from tronalddump.io
Add share buttons
clean up UI
fix bug that logged the replaced word to the console

add link to the source,
default value is now very stable genius :)

Artwork by https://www.flickr.com/photos/donkeyhotey/                    

확장 프로그램 기본 정보

이름 Replace Trump Replace Trump
ID njkplmefpahbpiejikehnbcnnhodniaj
공식 URL https://chromewebstore.google.com/detail/replace-trump/njkplmefpahbpiejikehnbcnnhodniaj
설명 Replace Trump replaces the word 'Trump' with any word(s) you choose.
파일 크기 178 KB
설치 횟수 121
현재 버전 1.2.3
최근 업데이트 2018-01-29
출시 날짜 2018-01-29
평점 4.14/5 총 7 개의 평점
개발자 Olu Omoniyi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.oluomoniyi.com
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Replace Trump",
    "description": "Replace Trump replaces the word 'Trump' with any word(s) you choose.",
    "version": "1.2.3",
    "author": "Olu Omoniyi",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "short_name": "Replace Trump",
    "background": {
        "scripts": [
            "Resource.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": "images\/icon16.png",
        "default_popup": "options.html",
        "default_title": "Replace Trump"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "Resource.js"
            ],
            "run_at": "document_end"
        }
    ]
}