ChatGPT Sound Notification

Plays a sound when ChatGPT finishes processing a prompt.

ChatGPT Sound Notification là gì?

ChatGPT Sound Notification là một tiện ích mở rộng Chrome được phát triển bởi Reliable Software Solutions Limited, và tính năng chính của nó là "Plays a sound when ChatGPT finishes processing a prompt.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng ChatGPT Sound Notification

Tải xuống các tệp mở rộng ChatGPT Sound Notification dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChatGPT Sound Notification ChatGPT Sound Notification
ID mhddefccgemcbnhkifhcpfmniecjekep
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-sound-notificatio/mhddefccgemcbnhkifhcpfmniecjekep
Mô tả Plays a sound when ChatGPT finishes processing a prompt.
Kích Thước Tệp 463 KB
Số Lần Cài Đặt 42
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-06-05
Ngày Phát Hành 2023-04-03
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Reliable Software Solutions Limited
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.reliablesoftware.solutions/cgpt-pp
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}