Trump Filter

Remove Donald Trump from the Internet.

Trump Filter란 무엇입니까?

Trump Filter은(는) https://trumpfilter.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove Donald Trump from the Internet."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        In a culture fueled by celebrity and an electorate engineered for polarity, how can any one in these United States of America be surprised by the campaign of Donald J. Trump? Minted by shady back room real estate, distributed by reality television and crowned by incessant polling of ultra-early primary voters, Trump is the latest, hilarious permutation of American leadership. He is not the candidate we need, but surely the one we deserve.

In a political atmosphere where ascendance can be manufactured through attention, the only way to deflate Trump's political star is through suffocation. Trump can only lose if we turn off the TV.

Thus, the Trump Filter is presented as part of the antidote for this toxic candidacy. This Chrome extension will identify parts of a web page likely to contain Donald Trump and erase them from the Internet.

Share with your friends and eliminate the only currency Trump can spend to win: brand recognition.

RELEASE LOG:

1.0.1 - Changed default filter setting to "Mild."
1.1 - Fixed some bugs on news sites.
1.1.1 - jQuery version bump.                    

확장 프로그램 기본 정보

이름 Trump Filter Trump Filter
ID lhondapiaknegjpellpodegmeonigjic
공식 URL https://chromewebstore.google.com/detail/trump-filter/lhondapiaknegjpellpodegmeonigjic
설명 Remove Donald Trump from the Internet.
파일 크기 81.4 KB
설치 횟수 4,432
현재 버전 1.1.2
최근 업데이트 2020-03-19
출시 날짜 2020-03-18
평점 3.29/5 총 345 개의 평점
개발자 https://trumpfilter.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.trumpfilter.com
도움말 페이지 URL http://www.trumpfilter.com
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trump Filter",
    "version": "1.1.2",
    "description": "Remove Donald Trump from the Internet.",
    "page_action": {
        "default_icon": "images\/icon-19x19.png",
        "default_title": "Warning: Trump is on this page!"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_globs": [
                "*:\/\/*trumpfilter.com*",
                "*:\/\/*github.com*"
            ],
            "js": [
                "js\/jquery-3.1.1.min.js",
                "js\/filter.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "images\/icon-16x16.png",
        "19": "images\/icon-19x19.png",
        "48": "images\/icon-48x48.png",
        "128": "images\/icon-128x128.png",
        "130": "images\/icon-130x130.png",
        "550": "images\/icon-550x550.png"
    },
    "background": {
        "persistent": false,
        "page": "background.html"
    },
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}