GPTCheck — fact-check ChatGPT

✅ Highlight, right-click, verify with references

GPTCheck — fact-check ChatGPT là gì?

GPTCheck — fact-check ChatGPT là một tiện ích mở rộng Chrome được phát triển bởi Useful Extensions, và tính năng chính của nó là "✅ Highlight, right-click, verify with references".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GPTCheck — fact-check ChatGPT

Tải xuống các tệp mở rộng GPTCheck — fact-check ChatGPT dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        🎯 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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GPTCheck — fact-check ChatGPT GPTCheck — fact-check ChatGPT
ID cojnhjieiegndeooiaihghgclglbmoik
URL Chính Thức https://chromewebstore.google.com/detail/gptcheck-%E2%80%94-fact-check-cha/cojnhjieiegndeooiaihghgclglbmoik
Mô tả ✅ Highlight, right-click, verify with references
Kích Thước Tệp 3.52 MB
Số Lần Cài Đặt 478
Phiên Bản Hiện Tại 0.0.3.0
Cập Nhật Lần Cuối 2023-02-25
Ngày Phát Hành 2023-01-11
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Useful Extensions
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://tinyurl.com/chatcheck-feedback
URL Trang Chính Sách Bảo Mật https://docs.google.com/document/d/1PRnFUIjVBoWw2WCh60-HpkGVFB4_fJM-QoQDU_uDjPE/edit
Ngôn Ngữ Được Hỗ Trợ 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": [
        ""
    ]
}