Make Twitter Great Again

Block tweets about U.S. 2016 election in your feed

Qu'est-ce que Make Twitter Great Again ?

Make Twitter Great Again est une extension Chrome développée par adilnaut, et sa fonction principale est "Block tweets about U.S. 2016 election in your feed".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Make Twitter Great Again

Téléchargez les fichiers d'extension Make Twitter Great Again 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

                        Our extension hides tweets about U.S. 2016 elections from your twitter feed. It uses machine learning and artificial intelligence approach to block tweets, which means that it looks to the content of the tweets and does not biased towards specific users.
DISCLAIMER: as our extension uses machine learning algorithms, our predictions may not always be accurate. That is why you can always show tweets, that were hidden by it.                    

Informations de Base sur l'Extension

Nom Make Twitter Great Again Make Twitter Great Again
ID beifniogjbogfikkdkblpemliilcjnhf
URL Officiel https://chromewebstore.google.com/detail/make-twitter-great-again/beifniogjbogfikkdkblpemliilcjnhf
Description Block tweets about U.S. 2016 election in your feed
Taille du Fichier 41.49 KB
Nombre d'Installations 47
Version Actuelle 1.0.2
Dernière Mise à Jour 2016-10-09
Date de Publication 2016-10-09
Évaluation 4.33/5 Total 6 Évaluations
Développeur adilnaut
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://maketwittergreatagain.weebly.com
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Make Twitter Great Again",
    "description": "Block tweets about U.S. 2016 election in your feed",
    "version": "1.0.2",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Switch blocking"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "http:\/\/twitter.com\/*"
            ],
            "js": [
                "jquery.js",
                "initialize.js",
                "content.js",
                "popup.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}