Fact Layer

Fact checking resource to help navigate the internet.

Fact Layerคืออะไร?

Fact Layer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย RatNeurons และคุณลักษณะหลักของมันคือ "Fact checking resource to help navigate the internet."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fact Layer

ดาวน์โหลดไฟล์ส่วนขยาย Fact Layer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Fact Layer provides helpful contextual information on many sites while you browse the internet.

Some of the features include:

1. Integration into social networking / news aggregation sites, to make it easier to tell if a news item is worth clicking into. Currently Reddit, CounterSocial, Digg, Slashdot, and Fark are supported.

2. Bias information on more than 2,000 news/media sites.

3. Information on satire, fake news, and extremely unreliable sources.

4. Article specific fact checking lookup that displays the number of factual statements that are disputed.

5. Information on around 8,000 charities.

6. Automated detection of some fake local news sites (i.e actionews3.com, channel22news.com, etc). 

All site information queries are done locally, meaning no information is sent to me about your browsing activities at any time.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Fact Layer Fact Layer
ID hgfniflmccdkamjfdbncjldgimgginjj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fact-layer/hgfniflmccdkamjfdbncjldgimgginjj
คำอธิบาย Fact checking resource to help navigate the internet.
ขนาดไฟล์ 336 KB
จำนวนการติดตั้ง 410
เวอร์ชันปัจจุบัน 2.0.0.0
อัปเดตครั้งล่าสุด 2022-04-10
วันที่เผยแพร่ 2019-08-10
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา RatNeurons
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/RatNeurons/fact-layer
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fact Layer",
    "version": "2.0.0.0",
    "description": "Fact checking resource to help navigate the internet.",
    "icons": {
        "48": "icons\/fact-layer.png",
        "96": "icons\/fact-layer-2x.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "*:\/\/factlayer.azurewebsites.net\/*"
    ],
    "browser_action": {
        "default_icon": "icons\/unknown_default.png",
        "default_title": "Fact Layer",
        "default_popup": "popup\/popup.html"
    },
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "scripts": [
            "fact.layer.utilities.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "js": [
                "site_js\/site.utilities.js",
                "site_js\/reddit.js"
            ],
            "css": [
                "site_css\/reddit.css"
            ]
        },
        {
            "matches": [
                "*:\/\/digg.com\/*"
            ],
            "js": [
                "site_js\/site.utilities.js",
                "site_js\/digg.js"
            ],
            "css": [
                "site_css\/digg.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.fark.com\/*"
            ],
            "js": [
                "site_js\/site.utilities.js",
                "site_js\/fark.js"
            ],
            "css": [
                "site_css\/fark.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.counter.social\/*"
            ],
            "js": [
                "site_js\/site.utilities.js",
                "site_js\/mastodon.js"
            ],
            "css": [
                "site_css\/mastodon.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.slashdot.org\/*",
                "*:\/\/slashdot.org\/*"
            ],
            "js": [
                "site_js\/site.utilities.js",
                "site_js\/slashdot.js"
            ],
            "css": [
                "site_css\/slashdot.css"
            ]
        },
        {
            "matches": [
                "*:\/\/getpocket.com\/*"
            ],
            "js": [
                "site_js\/site.utilities.js",
                "site_js\/getpocket.js"
            ],
            "css": [
                "site_css\/getpocket.css"
            ]
        }
    ]
}