ChatGPT Notifier

Plays a notification sound when ChatGPT has finished responding.

什么是ChatGPT Notifier?

ChatGPT Notifier是由joey840404开发的Chrome扩展程序,该扩展的主要功能是“Plays a notification sound when ChatGPT has finished responding.”。

扩展截图

screenshot

下载ChatGPT Notifier扩展crx文件

下载ChatGPT Notifier扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Do you find yourself getting distracted while waiting for ChatGPT to respond, and end up procrastinating? This is the tool for you!

The functionality is super simple:
After installing the extension, it plays a notification sound when ChatGPT finishes responding.

This extension is 99% done by ChatGPT-GPT4
Visit this page to see the prompts
https://github.com/JoeyWangTW/ChatGPT-notifier/blob/main/prompts/extention_v0.md

Visit this extension's Github page if you have feature request or feedback, thanks!
https://github.com/JoeyWangTW/ChatGPT-notifier


你在等待ChatGPT回覆的時候會分心,最後拖延時間嗎?這個工具專門為你而設! 

功能非常簡單:
此插件會在ChatGPT完成回覆後播放提示音

此插件99%是由ChatGPT-GPT4完成,此頁面有所有的對答紀錄
https://github.com/JoeyWangTW/ChatGPT-notifier/blob/main/prompts/extention_v0.md

歡迎來這個插件的Github頁面留下建議或是提出新功能要求,謝謝!
https://github.com/JoeyWangTW/ChatGPT-notifier                    

扩展基本信息

名称 ChatGPT Notifier ChatGPT Notifier
ID kpbihpkcpnfnjddplngmbljcfofjgejh
官方URL https://chromewebstore.google.com/detail/chatgpt-notifier/kpbihpkcpnfnjddplngmbljcfofjgejh
简介 Plays a notification sound when ChatGPT has finished responding.
文件大小 40.27 KB
安装次数 610
当前版本 1.0
更新时间 2023-04-03
上架时间 2023-04-02
评分 5.00/5 共1次评分
开发者 joey840404
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/JoeyWangTW/ChatGPT-notifier
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Notifier",
    "version": "1.0",
    "description": "Plays a notification sound when ChatGPT has finished responding.",
    "icons": {
        "128": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "notification.mp3"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}