FactoidL (beta)

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

FactoidL (beta) क्या है?

FactoidL (beta) FactoidL द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Checks the accuracy of webpage content based on other web sources."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में FactoidL (beta) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
}