ChatGPT Sound Notification
Plays a sound when ChatGPT finishes processing a prompt.
¿Qué es ChatGPT Sound Notification?
ChatGPT Sound Notification es una extensión de Chrome desarrollada por Reliable Software Solutions Limited, y su función principal es "Plays a sound when ChatGPT finishes processing a prompt.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión ChatGPT Sound Notification
Descarga archivos de extensión ChatGPT Sound Notification en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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!
Información Básica de la Extensión
Nombre | ChatGPT Sound Notification |
ID | mhddefccgemcbnhkifhcpfmniecjekep |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-sound-notificatio/mhddefccgemcbnhkifhcpfmniecjekep |
Descripción | Plays a sound when ChatGPT finishes processing a prompt. |
Tamaño del Archivo | 463 KB |
Cantidad de Instalaciones | 42 |
Versión Actual | 1.1 |
Última Actualización | 2023-06-05 |
Fecha de Publicación | 2023-04-03 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | Reliable Software Solutions Limited |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Política de Privacidad | https://www.reliablesoftware.solutions/cgpt-pp |
Idiomas Soportados | 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\/*" ] } ] } |