ChatGPT for StackOverflow
ChatGPT's response to every StackOverflow question
什么是ChatGPT for StackOverflow?
ChatGPT for StackOverflow是由devshobrook开发的Chrome扩展程序,该扩展的主要功能是“ChatGPT's response to every StackOverflow question”。
扩展截图
下载ChatGPT for StackOverflow扩展crx文件
下载ChatGPT for StackOverflow扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        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                     扩展基本信息
| 名称 |  | 
| ID | apjhekoaogdimcgiihoncakocdddhmlk | 
| 官方URL | https://chromewebstore.google.com/detail/chatgpt-for-stackoverflow/apjhekoaogdimcgiihoncakocdddhmlk | 
| 简介 | ChatGPT's response to every StackOverflow question | 
| 文件大小 | 888 KB | 
| 安装次数 | 3,000 | 
| 当前版本 | 0.3.0 | 
| 更新时间 | 2023-03-01 | 
| 上架时间 | 2023-01-21 | 
| 评分 | 4.60/5 共5次评分 | 
| 开发者 | devshobrook | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 扩展官网 | https://chatoverflow.ai/ | 
| 支持的语言 | 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"
            ]
        }
    ]
} | |