Project Fib
This extensions detects fake news on your facebook news feed
Project Fib là gì?
Project Fib là một tiện ích mở rộng Chrome được phát triển bởi NabanitaDe, và tính năng chính của nó là "This extensions detects fake news on your facebook news feed".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Project Fib
Tải xuống các tệp mở rộng Project Fib dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Project Fib |
ID | njfkbbdphllgkbdomopoiibhdkkohnbf |
URL Chính Thức | https://chromewebstore.google.com/detail/project-fib/njfkbbdphllgkbdomopoiibhdkkohnbf |
Mô tả | This extensions detects fake news on your facebook news feed |
Kích Thước Tệp | 22.9 KB |
Số Lần Cài Đặt | 585 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2017-02-15 |
Ngày Phát Hành | 2017-02-13 |
Đánh Giá | 2.27/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | NabanitaDe |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://projectfib.azurewebsites.net/ |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |