Steam Chat Auto Scroll
Automatically scrolls the Steam Web Chat window on new message.
Was ist Steam Chat Auto Scroll?
Steam Chat Auto Scroll ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Automatically scrolls the Steam Web Chat window on new message.".
Erweiterungsscreenshots
Steam Chat Auto Scroll-Erweiterungs-CRX-Datei herunterladen
Laden Sie Steam Chat Auto Scroll-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
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.
Grundlegende Informationen zur Erweiterung
Name | Steam Chat Auto Scroll |
ID | bcijdddmmglcfbbekdkepcainmnnomfl |
Offizielle URL | https://chromewebstore.google.com/detail/steam-chat-auto-scroll/bcijdddmmglcfbbekdkepcainmnnomfl |
Beschreibung | Automatically scrolls the Steam Web Chat window on new message. |
Dateigröße | 468 KB |
Installationsanzahl | 54 |
Aktuelle Version | 1.1 |
Letztes Update | 2018-09-24 |
Veröffentlichungsdatum | 2018-09-24 |
Bewertung | 4.86/5 Insgesamt 7 Bewertungen |
Entwickler | Unknown |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |