GPT Detector for StackOverflow

Query Chat GPT for answers on StackOverflow and compare previous answer similiarities to detect fake answers.

Co je GPT Detector for StackOverflow?

GPT Detector for StackOverflow je rozšíření Chrome vyvinuté mh-anwar, a jeho hlavní funkcí je „Query Chat GPT for answers on StackOverflow and compare previous answer similiarities to detect fake answers.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření GPT Detector for StackOverflow

Stáhněte si soubory rozšíření GPT Detector for StackOverflow ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Use StackOverflow with ChatGPT answering questions for you. Recieve new alternative answers to answered questions as well as answers for unanswered questions. Browse StackOverflow with GPT beside you!

Detect bots by seeing comparision scores for similiarity between answers by other users and ChatGPT-generated answer.                    

Základní Informace o Rozšíření

Název GPT Detector for StackOverflow GPT Detector for StackOverflow
ID lblhlbnnagmgddncifjahdigccdjndmn
Oficiální URL https://chromewebstore.google.com/detail/gpt-detector-for-stackove/lblhlbnnagmgddncifjahdigccdjndmn
Popis Query Chat GPT for answers on StackOverflow and compare previous answer similiarities to detect fake answers.
Velikost souboru 571 KB
Počet instalací 398
Aktuální Verze 1.4.0
Poslední Aktualizace 2023-09-19
Datum Vydání 2022-12-29
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář mh-anwar
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GPT Detector for StackOverflow",
    "short_name": "GPT Detector",
    "version": "1.4.0",
    "description": "Query Chat GPT for answers on StackOverflow and compare previous answer similiarities to detect fake answers.",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/gpt-detector-for-stackove\/lblhlbnnagmgddncifjahdigccdjndmn?hl=en&authuser=0",
    "manifest_version": 3,
    "default_locale": "en",
    "minimum_chrome_version": "88",
    "icons": {
        "16": "assets\/icons\/icon_16.png",
        "32": "assets\/icons\/icon_32.png",
        "48": "assets\/icons\/icon_48.png",
        "128": "assets\/icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "assets\/icons\/icon_16.png",
            "32": "assets\/icons\/icon_32.png",
            "48": "assets\/icons\/icon_48.png",
            "128": "assets\/icons\/icon_128.png"
        },
        "default_title": "GPT Detector"
    },
    "permissions": [
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.openai.com\/",
        "https:\/\/chat.openai.com\/chat"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}