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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
개인정보 보호 정책 페이지 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\/*" ] } ] } |