GPTCheck — fact-check ChatGPT

✅ Highlight, right-click, verify with references

Cos'è GPTCheck — fact-check ChatGPT?

GPTCheck — fact-check ChatGPT è un'estensione di Chrome sviluppata da Useful Extensions, e la sua funzione principale è "✅ Highlight, right-click, verify with references".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione GPTCheck — fact-check ChatGPT

Scarica i file di estensione GPTCheck — fact-check ChatGPT in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome GPTCheck — fact-check ChatGPT GPTCheck — fact-check ChatGPT
ID cojnhjieiegndeooiaihghgclglbmoik
URL Ufficiale https://chromewebstore.google.com/detail/gptcheck-%E2%80%94-fact-check-cha/cojnhjieiegndeooiaihghgclglbmoik
Descrizione ✅ Highlight, right-click, verify with references
Dimensione del File 3.52 MB
Conteggio Installazioni 478
Versione Corrente 0.0.3.0
Ultimo Aggiornamento 2023-02-25
Data di Pubblicazione 2023-01-11
Valutazione 4.00/5 Totale 2 Valutazioni
Sviluppatore Useful Extensions
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://tinyurl.com/chatcheck-feedback
URL della Pagina della Politica sulla Privacy https://docs.google.com/document/d/1PRnFUIjVBoWw2WCh60-HpkGVFB4_fJM-QoQDU_uDjPE/edit
Lingue Supportate 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": [
        ""
    ]
}