Politaway

Block all the unnecessary political mumbo-jumbo.

Politaway란 무엇입니까?

Politaway은(는) arthur.oganezov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block all the unnecessary political mumbo-jumbo."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Update 1.2:
*The extension works a little bit quicker now
*The options page had some renovations.

Coming soon:
*Add your own words
*Stats on what's getting removed.

Our Google Chrome extension filters out political posts by removing them from your feed as you scroll. Whether you're on your news feed, a friends page, a group, or any other feed, the related posts will disappear.

Due to the recent political events we've seen a lot of comments and posts about politics. While it's good to stay informed, a lot of these posts are filled with misinformation, hatred, and nonsense. Eventually, enough is enough and you may want to take out some, or all, of the politics from your Facebook experience.

Developed by: Patrick Piwowarczyk and Artur Oganezov

Please contact us with suggestions and questions!                    

확장 프로그램 기본 정보

이름 Politaway Politaway
ID ekpipcegdmmpbokjecapbbibnijaegkc
공식 URL https://chrome.google.com/webstore/detail/politaway/ekpipcegdmmpbokjecapbbibnijaegkc
설명 Block all the unnecessary political mumbo-jumbo.
파일 크기 1.23 MB
설치 횟수 70
현재 버전 1.3
최근 업데이트 2017-02-18
출시 날짜 2017-02-18
평점 5.00/5 총 5 개의 평점
개발자 arthur.oganezov
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/aoganezo/MakeFacebookGreatAgain
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Politaway",
    "short_name": "FB Political Filter",
    "description": "Block all the unnecessary political mumbo-jumbo.",
    "version": "1.3",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Politics away!"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*",
                "http:\/\/www.facebook.com\/*"
            ],
            "js": [
                "filter.js",
                "jquery-1.11.3.min.js"
            ],
            "css": [
                "jquery.mobile.inline-svg-1.4.5.min.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "webNavigation",
        "https:\/\/ajax.googleapis.com\/"
    ]
}