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
电子邮箱 [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'"
}