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