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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
            ]
        }
    ]
}