Steam Chat Auto Scroll
Automatically scrolls the Steam Web Chat window on new message.
Qu'est-ce que Steam Chat Auto Scroll ?
Steam Chat Auto Scroll est une extension Chrome développée par Unknown, et sa fonction principale est "Automatically scrolls the Steam Web Chat window on new message.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Steam Chat Auto Scroll
Téléchargez les fichiers d'extension Steam Chat Auto Scroll 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
NOTE: This fix is no longer required since the Steam chat update which fixed the scrolling bug. The extension will stay up however for those who still find it useful. Fixes Steam Web Chat bug that prevents the chat window from scrolling down when a new message is sent or received. Click the icon to take you directly to Steam Web Chat.
Informations de Base sur l'Extension
Nom | Steam Chat Auto Scroll |
ID | bcijdddmmglcfbbekdkepcainmnnomfl |
URL Officiel | https://chromewebstore.google.com/detail/steam-chat-auto-scroll/bcijdddmmglcfbbekdkepcainmnnomfl |
Description | Automatically scrolls the Steam Web Chat window on new message. |
Taille du Fichier | 468 KB |
Nombre d'Installations | 54 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2018-09-24 |
Date de Publication | 2018-09-24 |
Évaluation | 4.86/5 Total 7 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Steam Chat Auto Scroll", "short_name": "Steam Scroll", "description": "Automatically scrolls the Steam Web Chat window on new message.", "version": "1.1", "browser_action": { "default_icon": "icon_grey.png" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/steamcommunity.com\/chat" ], "js": [ "scroll.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab", "tabs" ] } |