Politaway

Block all the unnecessary political mumbo-jumbo.

什麼是Politaway?

Politaway是由arthur.oganezov開發的Chrome擴展程式,該擴展的主要功能是“Block all the unnecessary political mumbo-jumbo.”。

擴展截圖

screenshot

下載Politaway擴展crx文件

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

擴展使用說明

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