ChatGPT Notifier
Plays a notification sound when ChatGPT has finished responding.
ChatGPT Notifier란 무엇입니까?
ChatGPT Notifier은(는) joey840404에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Plays a notification sound when ChatGPT has finished responding."입니다.
확장 프로그램 스크린샷
ChatGPT Notifier 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Do you find yourself getting distracted while waiting for ChatGPT to respond, and end up procrastinating? This is the tool for you! The functionality is super simple: After installing the extension, it plays a notification sound when ChatGPT finishes responding. This extension is 99% done by ChatGPT-GPT4 Visit this page to see the prompts https://github.com/JoeyWangTW/ChatGPT-notifier/blob/main/prompts/extention_v0.md Visit this extension's Github page if you have feature request or feedback, thanks! https://github.com/JoeyWangTW/ChatGPT-notifier 你在等待ChatGPT回覆的時候會分心,最後拖延時間嗎?這個工具專門為你而設! 功能非常簡單: 此插件會在ChatGPT完成回覆後播放提示音 此插件99%是由ChatGPT-GPT4完成,此頁面有所有的對答紀錄 https://github.com/JoeyWangTW/ChatGPT-notifier/blob/main/prompts/extention_v0.md 歡迎來這個插件的Github頁面留下建議或是提出新功能要求,謝謝! https://github.com/JoeyWangTW/ChatGPT-notifier
확장 프로그램 기본 정보
이름 | ChatGPT Notifier |
ID | kpbihpkcpnfnjddplngmbljcfofjgejh |
공식 URL | https://chromewebstore.google.com/detail/chatgpt-notifier/kpbihpkcpnfnjddplngmbljcfofjgejh |
설명 | Plays a notification sound when ChatGPT has finished responding. |
파일 크기 | 40.27 KB |
설치 횟수 | 610 |
현재 버전 | 1.0 |
최근 업데이트 | 2023-04-03 |
출시 날짜 | 2023-04-02 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | joey840404 |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/JoeyWangTW/ChatGPT-notifier |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Notifier", "version": "1.0", "description": "Plays a notification sound when ChatGPT has finished responding.", "icons": { "128": "logo.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "notification.mp3" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ] } |