Politaway

Block all the unnecessary political mumbo-jumbo.

Что такое Politaway?

Politaway - это расширение Chrome, разработанное arthur.oganezov, и его основная функция - "Block all the unnecessary political mumbo-jumbo.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Politaway

Скачайте файлы расширений 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
Официальный 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\/"
    ]
}