Project Fib

This extensions detects fake news on your facebook news feed

Was ist Project Fib?

Project Fib ist eine Chrome-Erweiterung, die von NabanitaDe entwickelt wurde, und ihr Hauptmerkmal ist "This extensions detects fake news on your facebook news feed".

Erweiterungsscreenshots

Project Fib-Erweiterungs-CRX-Datei herunterladen

Laden Sie Project Fib-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Project Fib Project Fib
ID njfkbbdphllgkbdomopoiibhdkkohnbf
Offizielle URL https://chromewebstore.google.com/detail/project-fib/njfkbbdphllgkbdomopoiibhdkkohnbf
Beschreibung This extensions detects fake news on your facebook news feed
Dateigröße 22.9 KB
Installationsanzahl 585
Aktuelle Version 0.1
Letztes Update 2017-02-15
Veröffentlichungsdatum 2017-02-13
Bewertung 2.27/5 Insgesamt 11 Bewertungen
Entwickler NabanitaDe
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://projectfib.azurewebsites.net/
Unterstützte Sprachen 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"
            ]
        }
    ]
}