ChatGPT for StackOverflow

ChatGPT's response to every StackOverflow question

What is ChatGPT for StackOverflow?

ChatGPT for StackOverflow is a Chrome extension developed by devshobrook, and its main feature is "ChatGPT's response to every StackOverflow question".

Extension Screenshots

screenshot

Download ChatGPT for StackOverflow Extension CRX File

Download ChatGPT for StackOverflow extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name ChatGPT for StackOverflow ChatGPT for StackOverflow
ID apjhekoaogdimcgiihoncakocdddhmlk
Official URL https://chromewebstore.google.com/detail/chatgpt-for-stackoverflow/apjhekoaogdimcgiihoncakocdddhmlk
Description ChatGPT's response to every StackOverflow question
File Size 888 KB
Installation Count 3,000
Current Version 0.3.0
Last Updated 2023-03-01
Publish Date 2023-01-21
Rating 4.60/5 Total 5 Ratings
Developer devshobrook
Email [email protected]
Payment Type free
Extension Website https://chatoverflow.ai/
Supported Languages 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"
            ]
        }
    ]
}