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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | ChatGPT for StackOverflow |
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" ] } ] } |