GPTCheck — fact-check ChatGPT

✅ Highlight, right-click, verify with references

GPTCheck — fact-check ChatGPT क्या है?

GPTCheck — fact-check ChatGPT Useful Extensions द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "✅ Highlight, right-click, verify with references"।

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

screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में GPTCheck — fact-check ChatGPT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        🎯 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": [
        ""
    ]
}