Project Fib

This extensions detects fake news on your facebook news feed

ما هو Project Fib؟

Project Fib هو إضافة Chrome تم تطويرها بواسطة NabanitaDe، والميزة الرئيسية لها هي "This extensions detects fake news on your facebook news feed".

لقطات شاشة التمديد

تحميل ملف CRX للإضافة Project Fib

قم بتنزيل ملفات الامتداد Project Fib بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
            ]
        }
    ]
}