Hide Fake News - Avoid MSM Lies on Twitter

Free tool that hides fake news while you browse Twitter.

O que é Hide Fake News - Avoid MSM Lies on Twitter?

Hide Fake News - Avoid MSM Lies on Twitter é uma extensão do Chrome desenvolvida por http://ryanckulp.com, e sua principal característica é "Free tool that hides fake news while you browse Twitter.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Hide Fake News - Avoid MSM Lies on Twitter

Baixe arquivos de extensão Hide Fake News - Avoid MSM Lies on Twitter 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

                        "Fake News," the most recent hoax from the MSM (mainstream media), has backfired.

Independent journalists, free-thinkers, and American citizens everywhere are uncovering the actual* Fake News Networks.

This plugin hides fake new (NY Times, CNN, ABC, etc) from your Twitter feed. There's no signup, no email, nothing to download.

To get involved, contribute anytime via email ([email protected]), or submit a pull request to the open source code:
https://github.com/ryanckulp/hide_fake_news                    

Informações Básicas da Extensão

Nome Hide Fake News - Avoid MSM Lies on Twitter Hide Fake News - Avoid MSM Lies on Twitter
ID lihcikjmjdlidleajjjkabhmbeghjkda
URL Oficial https://chrome.google.com/webstore/detail/hide-fake-news-avoid-msm/lihcikjmjdlidleajjjkabhmbeghjkda
Descrição Free tool that hides fake news while you browse Twitter.
Tamanho do Arquivo 42.22 KB
Contagem de Instalações 11
Versão Atual 0.2
Última Atualização 2016-12-22
Data de Publicação 2016-12-22
Classificação 1.00/5 Total de 2 Avaliações
Desenvolvedor http://ryanckulp.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ryanckulp/hide_fake_news
URL da Página de Política de Privacidade https://github.com/ryanckulp/twitter_ad_blocker/wiki/Privacy-Policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide Fake News - Avoid MSM Lies on Twitter",
    "short_name": "Hide Fake News",
    "description": "Free tool that hides fake news while you browse Twitter.",
    "browser_action": {
        "default_icon": "fake_news_128.png"
    },
    "version": "0.2",
    "icons": {
        "16": "fake_news_16.png",
        "48": "fake_news_48.png",
        "128": "fake_news_128.png"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "icon.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.twitter.com\/*",
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "sources.js",
                "content.js"
            ]
        }
    ]
}