Twitch Live Notification

Get notified of live broadcast you're following on Twitch

Qu'est-ce que Twitch Live Notification ?

Twitch Live Notification est une extension Chrome développée par https://a2tt.me, et sa fonction principale est "Get notified of live broadcast you're following on Twitch".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Twitch Live Notification

Téléchargez les fichiers d'extension Twitch Live 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

                        This extension shows live channels you are following.
You only need to write down your ID once.

It periodically fetches information about the streamers you follow, 
shows streamers that are on live broadcast currently,
and also let you know when the live broadcast starts.

# Updates
23.09.09 Maintenance
20.09.20 Dark Mode
20.09.15 Notification
20.09.14                    

Informations de Base sur l'Extension

Nom Twitch Live Notification Twitch Live Notification
ID jchdobapodgpkopkldkegoopmkmpkbia
URL Officiel https://chromewebstore.google.com/detail/twitch-live-notification/jchdobapodgpkopkldkegoopmkmpkbia
Description Get notified of live broadcast you're following on Twitch
Taille du Fichier 360 KB
Nombre d'Installations 121
Version Actuelle 1.1.0
Dernière Mise à Jour 2023-09-10
Date de Publication 2020-09-14
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://a2tt.me
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/a2tt/Twitch-Live-Notification
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Get notified of live broadcast you're following on Twitch",
    "version": "1.1.0",
    "manifest_version": 3,
    "name": "Twitch Live Notification",
    "action": {
        "default_icon": "\/img\/icon_16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "\/img\/icon_16.png",
        "32": "\/img\/icon_32.png",
        "48": "\/img\/icon_48.png",
        "128": "\/img\/icon_128.png"
    },
    "background": {
        "service_worker": "background.bundle.js",
        "type": "module"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "alarms",
        "notifications",
        "identity"
    ],
    "host_permissions": [
        "https:\/\/*.twitch.tv\/"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; style-src 'self' 'unsafe-inline'; connect-src https:\/\/*.twitch.tv http:\/\/localhost:* ws:\/\/localhost:*;"
    }
}