Project Fib

This extensions detects fake news on your facebook news feed

Cos'è Project Fib?

Project Fib è un'estensione di Chrome sviluppata da NabanitaDe, e la sua funzione principale è "This extensions detects fake news on your facebook news feed".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Project Fib

Scarica i file di estensione Project Fib 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

                        FiB is a chrome extension for detecting Fake News on Facebook. When the user scrolls through their Facebook page, on the top right corner for every Facebook post, it would tag the news as verified and non-verified where non-verified is potentially fake news. It also works on twitter snapshots - checks if the user ever posted the tweet mentioned in that twitter snapshot, shared on Facebook or no. If the user did post that tweet, it marks the Facebook post as verified else non-verified. For pictures containing adult content as well, it would mark those posts as non-verified.                    

Informazioni di Base sull'Estensione

Nome Project Fib Project Fib
ID njfkbbdphllgkbdomopoiibhdkkohnbf
URL Ufficiale https://chromewebstore.google.com/detail/project-fib/njfkbbdphllgkbdomopoiibhdkkohnbf
Descrizione This extensions detects fake news on your facebook news feed
Dimensione del File 22.9 KB
Conteggio Installazioni 585
Versione Corrente 0.1
Ultimo Aggiornamento 2017-02-15
Data di Pubblicazione 2017-02-13
Valutazione 2.27/5 Totale 11 Valutazioni
Sviluppatore NabanitaDe
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://projectfib.azurewebsites.net/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Project Fib",
    "description": "This extensions detects fake news on your facebook news feed",
    "version": "0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "64": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ],
            "css": [
                "\/ladda\/ladda.css"
            ],
            "js": [
                "myScript.js",
                "\/ladda\/ladda.js",
                "\/ladda\/spin.js"
            ]
        }
    ]
}