Make Twitter Great Again

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

O que é Make Twitter Great Again?

Make Twitter Great Again é uma extensão do Chrome desenvolvida por adilnaut, e sua principal característica é "Block tweets about U.S. 2016 election in your feed".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Make Twitter Great Again

Baixe arquivos de extensão Make Twitter Great Again no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Make Twitter Great Again Make Twitter Great Again
ID beifniogjbogfikkdkblpemliilcjnhf
URL Oficial https://chromewebstore.google.com/detail/make-twitter-great-again/beifniogjbogfikkdkblpemliilcjnhf
Descrição Block tweets about U.S. 2016 election in your feed
Tamanho do Arquivo 41.49 KB
Contagem de Instalações 47
Versão Atual 1.0.2
Última Atualização 2016-10-09
Data de Publicação 2016-10-09
Classificação 4.33/5 Total de 6 Avaliações
Desenvolvedor adilnaut
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://maketwittergreatagain.weebly.com
Idiomas Suportados 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'"
}