Twitter Fact Check

This extension fact-checks your friends' tweets with a variety of news sources

Cos'è Twitter Fact Check?

Twitter Fact Check è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension fact-checks your friends' tweets with a variety of news sources".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitter Fact Check

Scarica i file di estensione Twitter Fact Check 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

                        This extension identifies political tweets and creates a dropdown list filled with relevant articles from the guardian. Extension also includes a search functionality to get new results.                    

Informazioni di Base sull'Estensione

Nome Twitter Fact Check Twitter Fact Check
ID knkgedhglgpdamdklbgoknjhmappdaoo
URL Ufficiale https://chromewebstore.google.com/detail/twitter-fact-check/knkgedhglgpdamdklbgoknjhmappdaoo
Descrizione This extension fact-checks your friends' tweets with a variety of news sources
Dimensione del File 667 KB
Conteggio Installazioni 23
Versione Corrente 1.0
Ultimo Aggiornamento 2017-05-01
Data di Pubblicazione 2017-05-01
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": true,
        "scripts": [
            "reload.js"
        ]
    },
    "name": "Twitter Fact Check",
    "version": "1.0",
    "manifest_version": 2,
    "description": "This extension fact-checks your friends' tweets with a variety of news sources",
    "permissions": [
        "webRequest",
        "tabs",
        "*:\/\/*.twitter.com\/*",
        "file:\/\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "response.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "font-awesome-4.7.0\/css\/font-awesome.min.css",
        "*.ttf",
        "*.woff",
        "*.woff2",
        "*.png"
    ]
}