Make Twitter Great Again

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

¿Qué es Make Twitter Great Again?

Make Twitter Great Again es una extensión de Chrome desarrollada por adilnaut, y su función principal es "Block tweets about U.S. 2016 election in your feed".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Make Twitter Great Again

Descarga archivos de extensión Make Twitter Great Again en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Make Twitter Great Again Make Twitter Great Again
ID beifniogjbogfikkdkblpemliilcjnhf
URL Oficial https://chromewebstore.google.com/detail/make-twitter-great-again/beifniogjbogfikkdkblpemliilcjnhf
Descripción Block tweets about U.S. 2016 election in your feed
Tamaño del Archivo 41.49 KB
Cantidad de Instalaciones 47
Versión Actual 1.0.2
Última Actualización 2016-10-09
Fecha de Publicación 2016-10-09
Calificación 4.33/5 Total de 6 Calificaciones
Desarrollador adilnaut
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://maketwittergreatagain.weebly.com
Idiomas Soportados 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'"
}