Project Fib
This extensions detects fake news on your facebook news feed
Co je Project Fib?
Project Fib je rozšíření Chrome vyvinuté NabanitaDe, a jeho hlavní funkcí je „This extensions detects fake news on your facebook news feed“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Project Fib
Stáhněte si soubory rozšíření Project Fib ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Project Fib |
ID | njfkbbdphllgkbdomopoiibhdkkohnbf |
Oficiální URL | https://chromewebstore.google.com/detail/project-fib/njfkbbdphllgkbdomopoiibhdkkohnbf |
Popis | This extensions detects fake news on your facebook news feed |
Velikost souboru | 22.9 KB |
Počet instalací | 585 |
Aktuální Verze | 0.1 |
Poslední Aktualizace | 2017-02-15 |
Datum Vydání | 2017-02-13 |
Hodnocení | 2.27/5 Celkem 11 Hodnocení |
Vývojář | NabanitaDe |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | http://projectfib.azurewebsites.net/ |
Podporované Jazyky | 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" ] } ] } |