ChatGPT Sound Notification

Plays a sound when ChatGPT finishes processing a prompt.

Qu'est-ce que ChatGPT Sound Notification ?

ChatGPT Sound Notification est une extension Chrome développée par Reliable Software Solutions Limited, et sa fonction principale est "Plays a sound when ChatGPT finishes processing a prompt.".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension ChatGPT Sound Notification

Téléchargez les fichiers d'extension ChatGPT Sound Notification au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom ChatGPT Sound Notification ChatGPT Sound Notification
ID mhddefccgemcbnhkifhcpfmniecjekep
URL Officiel https://chromewebstore.google.com/detail/chatgpt-sound-notificatio/mhddefccgemcbnhkifhcpfmniecjekep
Description Plays a sound when ChatGPT finishes processing a prompt.
Taille du Fichier 463 KB
Nombre d'Installations 42
Version Actuelle 1.1
Dernière Mise à Jour 2023-06-05
Date de Publication 2023-04-03
Évaluation 5.00/5 Total 3 Évaluations
Développeur Reliable Software Solutions Limited
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://www.reliablesoftware.solutions/cgpt-pp
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}