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 |
| 官方網址 | 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"
]
}
]
} | |