Steam Chat Auto Scroll
Automatically scrolls the Steam Web Chat window on new message.
Co to jest Steam Chat Auto Scroll?
Steam Chat Auto Scroll to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Automatically scrolls the Steam Web Chat window on new message.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Steam Chat Auto Scroll
Pobierz pliki rozszerzeń Steam Chat Auto Scroll w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Steam Chat Auto Scroll |
ID | bcijdddmmglcfbbekdkepcainmnnomfl |
Oficjalny URL | https://chromewebstore.google.com/detail/steam-chat-auto-scroll/bcijdddmmglcfbbekdkepcainmnnomfl |
Opis | Automatically scrolls the Steam Web Chat window on new message. |
Rozmiar pliku | 468 KB |
Liczba instalacji | 54 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2018-09-24 |
Data Publikacji | 2018-09-24 |
Ocena | 4.86/5 Łącznie 7 Oceny |
Deweloper | Unknown |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |