Steam Chat Auto Scroll
Automatically scrolls the Steam Web Chat window on new message.
Wat is Steam Chat Auto Scroll?
Steam Chat Auto Scroll is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Automatically scrolls the Steam Web Chat window on new message.".
Extensie Screenshots
Download het CRX-bestand van de extensie Steam Chat Auto Scroll
Download Steam Chat Auto Scroll-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Steam Chat Auto Scroll |
ID | bcijdddmmglcfbbekdkepcainmnnomfl |
Officiële URL | https://chromewebstore.google.com/detail/steam-chat-auto-scroll/bcijdddmmglcfbbekdkepcainmnnomfl |
Beschrijving | Automatically scrolls the Steam Web Chat window on new message. |
Bestandsgrootte | 468 KB |
Aantal Installaties | 54 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2018-09-24 |
Publicatiedatum | 2018-09-24 |
Beoordeling | 4.86/5 Totaal 7 Beoordelingen |
Ontwikkelaar | Unknown |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |