GPTCheck — fact-check ChatGPT

✅ Highlight, right-click, verify with references

什么是GPTCheck — fact-check ChatGPT?

GPTCheck — fact-check ChatGPT是由Useful Extensions开发的Chrome扩展程序,该扩展的主要功能是“✅ Highlight, right-click, verify with references”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载GPTCheck — fact-check ChatGPT扩展crx文件

下载GPTCheck — fact-check ChatGPT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        🎯 Try out the website version: https://chatcheck.vercel.app

💯 Currently free, unlimited, and available to all -- until compute resources run out.


How it works:
Highlight any sentence and right-click to select GPTCheck.

GPTCheck searches through Google with your highlighted sentence. Then, it takes the top website results and finds the most similar sentence. 

The similarity score uses the cosine similarity score, which measures how much the general gist of two sentences are similar, so higher = better. It measures this by using another machine learning language model to turn sentences into numbers, and then calculates the correlation between the two numbers.                    

扩展基本信息

名称 GPTCheck — fact-check ChatGPT GPTCheck — fact-check ChatGPT
ID cojnhjieiegndeooiaihghgclglbmoik
官方URL https://chromewebstore.google.com/detail/gptcheck-%E2%80%94-fact-check-cha/cojnhjieiegndeooiaihghgclglbmoik
简介 ✅ Highlight, right-click, verify with references
文件大小 3.52 MB
安装次数 478
当前版本 0.0.3.0
更新时间 2023-02-25
上架时间 2023-01-11
评分 4.00/5 共2次评分
开发者 Useful Extensions
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://tinyurl.com/chatcheck-feedback
隐私政策页面URL https://docs.google.com/document/d/1PRnFUIjVBoWw2WCh60-HpkGVFB4_fJM-QoQDU_uDjPE/edit
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPTCheck \u2014 fact-check ChatGPT",
    "description": "\u2705 Highlight, right-click, verify with references",
    "version": "0.0.3.0",
    "options_ui": {
        "page": "options.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/images\/*"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "host_permissions": [
        ""
    ]
}