Politaway

Block all the unnecessary political mumbo-jumbo.

Qu'est-ce que Politaway ?

Politaway est une extension Chrome développée par arthur.oganezov, et sa fonction principale est "Block all the unnecessary political mumbo-jumbo.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Politaway

Téléchargez les fichiers d'extension Politaway au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Politaway Politaway
ID ekpipcegdmmpbokjecapbbibnijaegkc
URL Officiel https://chrome.google.com/webstore/detail/politaway/ekpipcegdmmpbokjecapbbibnijaegkc
Description Block all the unnecessary political mumbo-jumbo.
Taille du Fichier 1.23 MB
Nombre d'Installations 70
Version Actuelle 1.3
Dernière Mise à Jour 2017-02-18
Date de Publication 2017-02-18
Évaluation 5.00/5 Total 5 Évaluations
Développeur arthur.oganezov
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/aoganezo/MakeFacebookGreatAgain
Langues Prises en Charge 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\/"
    ]
}