FactoidL (beta)

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

FactoidL (beta)란 무엇입니까?

FactoidL (beta)은(는) FactoidL에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Checks the accuracy of webpage content based on other web sources."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

FactoidL (beta) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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'"
}