ChatGPT Sound Notification
Plays a sound when ChatGPT finishes processing a prompt.
ChatGPT Sound Notificationคืออะไร?
ChatGPT Sound Notification เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Reliable Software Solutions Limited และคุณลักษณะหลักของมันคือ "Plays a sound when ChatGPT finishes processing a prompt."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT Sound Notification
ดาวน์โหลดไฟล์ส่วนขยาย ChatGPT Sound Notification ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Introducing our new Chrome extension! This handy tool notifies you with a sound whenever ChatGPT, the advanced language model, responds to your message. No more waiting around for a reply or constantly refreshing the page. With our extension, you'll be alerted the moment ChatGPT responds. Our extension is easy to use and can be installed with just a few clicks. Once installed, simply start chatting with ChatGPT and let our extension handle the rest. You can customize the sound notification to your liking, so you always know when ChatGPT responds. Whether you're using ChatGPT for work, research, or just for fun, our extension is the perfect addition to your browsing experience. Don't miss another message from ChatGPT - install our extension today and stay in the know!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ChatGPT Sound Notification |
ID | mhddefccgemcbnhkifhcpfmniecjekep |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chatgpt-sound-notificatio/mhddefccgemcbnhkifhcpfmniecjekep |
คำอธิบาย | Plays a sound when ChatGPT finishes processing a prompt. |
ขนาดไฟล์ | 463 KB |
จำนวนการติดตั้ง | 42 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2023-06-05 |
วันที่เผยแพร่ | 2023-04-03 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Reliable Software Solutions Limited |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://www.reliablesoftware.solutions/cgpt-pp |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Sound Notification", "version": "1.1", "description": "Plays a sound when ChatGPT finishes processing a prompt.", "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.openai.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "*.mp3" ], "matches": [ "*:\/\/*.openai.com\/*", "https:\/\/gist.githubusercontent.com\/*" ] } ] } |