ChatGPT Sound Notification
Plays a sound when ChatGPT finishes processing a prompt.
什么是ChatGPT Sound Notification?
ChatGPT Sound Notification是由Reliable Software Solutions Limited开发的Chrome扩展程序,该扩展的主要功能是“Plays a sound when ChatGPT finishes processing a prompt.”。
扩展截图
下载ChatGPT Sound Notification扩展crx文件
下载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\/*" ] } ] } |