Project Fib

This extensions detects fake news on your facebook news feed

Co to jest Project Fib?

Project Fib to rozszerzenie Chrome opracowane przez NabanitaDe, a jego główną funkcją jest „This extensions detects fake news on your facebook news feed”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Project Fib

Pobierz pliki rozszerzeń Project Fib w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Project Fib Project Fib
ID njfkbbdphllgkbdomopoiibhdkkohnbf
Oficjalny URL https://chromewebstore.google.com/detail/project-fib/njfkbbdphllgkbdomopoiibhdkkohnbf
Opis This extensions detects fake news on your facebook news feed
Rozmiar pliku 22.9 KB
Liczba instalacji 585
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2017-02-15
Data Publikacji 2017-02-13
Ocena 2.27/5 Łącznie 11 Oceny
Deweloper NabanitaDe
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://projectfib.azurewebsites.net/
Obsługiwane Języki 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"
            ]
        }
    ]
}