ChatGPT Notifier

Plays a notification sound when ChatGPT has finished responding.

Was ist ChatGPT Notifier?

ChatGPT Notifier ist eine Chrome-Erweiterung, die von joey840404 entwickelt wurde, und ihr Hauptmerkmal ist "Plays a notification sound when ChatGPT has finished responding.".

Erweiterungsscreenshots

screenshot

ChatGPT Notifier-Erweiterungs-CRX-Datei herunterladen

Laden Sie ChatGPT Notifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name ChatGPT Notifier ChatGPT Notifier
ID kpbihpkcpnfnjddplngmbljcfofjgejh
Offizielle URL https://chromewebstore.google.com/detail/chatgpt-notifier/kpbihpkcpnfnjddplngmbljcfofjgejh
Beschreibung Plays a notification sound when ChatGPT has finished responding.
Dateigröße 40.27 KB
Installationsanzahl 610
Aktuelle Version 1.0
Letztes Update 2023-04-03
Veröffentlichungsdatum 2023-04-02
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler joey840404
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/JoeyWangTW/ChatGPT-notifier
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}