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ファイルをダウンロード

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
Eメール [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'"
}