Project Fib

This extensions detects fake news on your facebook news feed

什麼是Project Fib?

Project Fib是由NabanitaDe開發的Chrome擴展程式,該擴展的主要功能是“This extensions detects fake news on your facebook news feed”。

擴展截圖

下載Project Fib擴展crx文件

下載Project Fib擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Project Fib Project Fib
ID njfkbbdphllgkbdomopoiibhdkkohnbf
官方網址 https://chromewebstore.google.com/detail/project-fib/njfkbbdphllgkbdomopoiibhdkkohnbf
簡介 This extensions detects fake news on your facebook news feed
檔案大小 22.9 KB
安裝次數 585
目前版本 0.1
更新時間 2017-02-15
上架時間 2017-02-13
評分 2.27/5 共 11 次評分
開發者 NabanitaDe
電子郵箱 [email protected]
付費類型 free
擴展官網 http://projectfib.azurewebsites.net/
支援的語言 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"
            ]
        }
    ]
}