ChatGPT Notifier
Plays a notification sound when ChatGPT has finished responding.
ChatGPT Notifier là gì?
ChatGPT Notifier là một tiện ích mở rộng Chrome được phát triển bởi joey840404, và tính năng chính của nó là "Plays a notification sound when ChatGPT has finished responding.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ChatGPT Notifier
Tải xuống các tệp mở rộng ChatGPT Notifier dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ChatGPT Notifier |
ID | kpbihpkcpnfnjddplngmbljcfofjgejh |
URL Chính Thức | https://chromewebstore.google.com/detail/chatgpt-notifier/kpbihpkcpnfnjddplngmbljcfofjgejh |
Mô tả | Plays a notification sound when ChatGPT has finished responding. |
Kích Thước Tệp | 40.27 KB |
Số Lần Cài Đặt | 610 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2023-04-03 |
Ngày Phát Hành | 2023-04-02 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | joey840404 |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/JoeyWangTW/ChatGPT-notifier |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |