I Hear You Twitch
Plays a sound when new message comes in Twitch chat
Qu'est-ce que I Hear You Twitch ?
I Hear You Twitch est une extension Chrome développée par Chih-Hsuan Fan, et sa fonction principale est "Plays a sound when new message comes in Twitch chat".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension I Hear You Twitch
Téléchargez les fichiers d'extension I Hear You Twitch 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
Plays a sound when new message comes in Twitch chat ## Features - Support every chatroom on Twitch site - Nice MSN "new message" sound ## How-to 1. Install and make sure you've reload the page 2. Click the extension icon to toggle ON/OFF when you're on a page with Twitch chatroom 3. The extension will automatically toggle OFF when you navigate to other Twitch pages ## Changelog ## [1.2.2] = 2020-5-16 ### Added - Support Twitch minor update at 2020 mid-May ## [1.2.1] = 2019-09-28 ### Added - Support Mixer site ## [1.2.0] - 2019-09-28 ### Added - Support new Twitch site (new logo version @ 2019) ## [1.1.0] - 2018-02-10 ### Added - Support new Twitch site (react version) ## [1.0.0] - 2018-08-25 - First release
Informations de Base sur l'Extension
Nom | I Hear You Twitch |
ID | jnehnjnapcmmblhkcplcffhkaikgfjfg |
URL Officiel | https://chromewebstore.google.com/detail/i-hear-you-twitch/jnehnjnapcmmblhkcplcffhkaikgfjfg |
Description | Plays a sound when new message comes in Twitch chat |
Taille du Fichier | 26.32 KB |
Nombre d'Installations | 1,209 |
Version Actuelle | 1.2.2 |
Dernière Mise à Jour | 2020-05-16 |
Date de Publication | 2020-05-15 |
Évaluation | 4.75/5 Total 8 Évaluations |
Développeur | Chih-Hsuan Fan |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/pc035860/i-hear-you-twitch |
URL de la Page d'Aide | https://github.com/pc035860/i-hear-you-twitch/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "I Hear You Twitch", "version": "1.2.2", "description": "Plays a sound when new message comes in Twitch chat", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.twitch.tv\/*", "*:\/\/*.mixer.com\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle" } ], "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "I Hear You - Twitch" }, "web_accessible_resources": [ "new_message.mp3", "images\/*.png" ] } |