ChatGPT for StackOverflow

ChatGPT's response to every StackOverflow question

Cos'è ChatGPT for StackOverflow?

ChatGPT for StackOverflow è un'estensione di Chrome sviluppata da devshobrook, e la sua funzione principale è "ChatGPT's response to every StackOverflow question".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ChatGPT for StackOverflow

Scarica i file di estensione ChatGPT for StackOverflow 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

                        See ChatGPT's response to every question on StackOverflow. With this extension, you can sidestep StackOverflow's ban on ChatGPT so that no question will ever be unanswered.

Source code: https://github.com/shobrook/ChatOverflow                    

Informazioni di Base sull'Estensione

Nome ChatGPT for StackOverflow ChatGPT for StackOverflow
ID apjhekoaogdimcgiihoncakocdddhmlk
URL Ufficiale https://chromewebstore.google.com/detail/chatgpt-for-stackoverflow/apjhekoaogdimcgiihoncakocdddhmlk
Descrizione ChatGPT's response to every StackOverflow question
Dimensione del File 888 KB
Conteggio Installazioni 3,000
Versione Corrente 0.3.0
Ultimo Aggiornamento 2023-03-01
Data di Pubblicazione 2023-01-21
Valutazione 4.60/5 Totale 5 Valutazioni
Sviluppatore devshobrook
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://chatoverflow.ai/
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT for StackOverflow",
    "version": "0.3.0",
    "description": "ChatGPT's response to every StackOverflow question",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "ChatGPT for StackOverflow",
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/"
    ],
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/stackoverflow.com\/questions\/*",
                "http:\/\/www.stackoverflow.com\/questions\/*",
                "https:\/\/stackoverflow.com\/questions\/*",
                "https:\/\/www.stackoverflow.com\/questions\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}