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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة سياسة الخصوصية | 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\/*" ] } ] } |