Make Twitter Great Again

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

Cos'è Make Twitter Great Again?

Make Twitter Great Again è un'estensione di Chrome sviluppata da adilnaut, e la sua funzione principale è "Block tweets about U.S. 2016 election in your feed".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Make Twitter Great Again

Scarica i file di estensione Make Twitter Great Again in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Make Twitter Great Again Make Twitter Great Again
ID beifniogjbogfikkdkblpemliilcjnhf
URL Ufficiale https://chromewebstore.google.com/detail/make-twitter-great-again/beifniogjbogfikkdkblpemliilcjnhf
Descrizione Block tweets about U.S. 2016 election in your feed
Dimensione del File 41.49 KB
Conteggio Installazioni 47
Versione Corrente 1.0.2
Ultimo Aggiornamento 2016-10-09
Data di Pubblicazione 2016-10-09
Valutazione 4.33/5 Totale 6 Valutazioni
Sviluppatore adilnaut
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://maketwittergreatagain.weebly.com
Lingue Supportate 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'"
}