Hide Fake News - Avoid MSM Lies on Twitter

Free tool that hides fake news while you browse Twitter.

Cos'è Hide Fake News - Avoid MSM Lies on Twitter?

Hide Fake News - Avoid MSM Lies on Twitter è un'estensione di Chrome sviluppata da http://ryanckulp.com, e la sua funzione principale è "Free tool that hides fake news while you browse Twitter.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Hide Fake News - Avoid MSM Lies on Twitter

Scarica i file di estensione Hide Fake News - Avoid MSM Lies on Twitter 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

                        "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                    

Informazioni di Base sull'Estensione

Nome Hide Fake News - Avoid MSM Lies on Twitter Hide Fake News - Avoid MSM Lies on Twitter
ID lihcikjmjdlidleajjjkabhmbeghjkda
URL Ufficiale https://chrome.google.com/webstore/detail/hide-fake-news-avoid-msm/lihcikjmjdlidleajjjkabhmbeghjkda
Descrizione Free tool that hides fake news while you browse Twitter.
Dimensione del File 42.22 KB
Conteggio Installazioni 11
Versione Corrente 0.2
Ultimo Aggiornamento 2016-12-22
Data di Pubblicazione 2016-12-22
Valutazione 1.00/5 Totale 2 Valutazioni
Sviluppatore http://ryanckulp.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ryanckulp/hide_fake_news
URL della Pagina della Politica sulla Privacy https://github.com/ryanckulp/twitter_ad_blocker/wiki/Privacy-Policy
Lingue Supportate 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"
            ]
        }
    ]
}