FactoidL (beta)

Checks the accuracy of webpage content based on other web sources.

FactoidL (beta)คืออะไร?

FactoidL (beta) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย FactoidL และคุณลักษณะหลักของมันคือ "Checks the accuracy of webpage content based on other web sources."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FactoidL (beta)

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

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

                        Not sure what you're reading is accurate?  FactoidL (pronounced factoidal), is a quick, automated fact checking tool that compares sentences you read to another source.

The idea behind the FactoidL project is simple: keep fact checking transparent, free, and easy to use.

For feedback or helping out with the project, please contact: [email protected]

Release 2.5 (Plato) Notes:
-Options for changing the source API url (note: still uses  tags for xml source text results.)

-Each factoid is marked as verified as accurate (✔️) or inaccurate (❌), or unverified (❓).

-Slight boost in algorithm performance, although offset with new verified/unverified checks.                    

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

ชื่อ FactoidL (beta) FactoidL (beta)
ID kilmdgadjedfbopcfbffaeodhamgiadp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/factoidl-beta/kilmdgadjedfbopcfbffaeodhamgiadp
คำอธิบาย Checks the accuracy of webpage content based on other web sources.
ขนาดไฟล์ 144 KB
จำนวนการติดตั้ง 102
เวอร์ชันปัจจุบัน 2.5
อัปเดตครั้งล่าสุด 2022-07-29
วันที่เผยแพร่ 2019-08-26
ผู้พัฒนา FactoidL
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/AlexanderKidd/FactoidL
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FactoidL (beta)",
    "description": "Checks the accuracy of webpage content based on other web sources.",
    "version": "2.5",
    "icons": {
        "16": "factoidL_icon16.png",
        "48": "factoidL_icon48.png",
        "128": "factoidL_icon128.png"
    },
    "background": {
        "scripts": [
            "compromise.min.js",
            "jquery-1.11.3.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.11.3.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "FactoidL"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "https:\/\/*\/",
        "*:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}