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 |
| Eメール | [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"
]
}
]
} | |