Steam Chat Auto Scroll
Automatically scrolls the Steam Web Chat window on new message.
Steam Chat Auto Scrollとは何ですか?
Steam Chat Auto ScrollはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Automatically scrolls the Steam Web Chat window on new message.」です。
拡張機能のスクリーンショット
Steam Chat Auto Scroll拡張機能のCRXファイルをダウンロード
Steam Chat Auto Scroll拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Steam Chat Auto Scroll |
ID | bcijdddmmglcfbbekdkepcainmnnomfl |
公式URL | https://chromewebstore.google.com/detail/steam-chat-auto-scroll/bcijdddmmglcfbbekdkepcainmnnomfl |
説明 | Automatically scrolls the Steam Web Chat window on new message. |
ファイルサイズ | 468 KB |
インストール数 | 54 |
現在のバージョン | 1.1 |
最終更新日 | 2018-09-24 |
公開日 | 2018-09-24 |
評価 | 4.86/5 合計 7 レビュー |
開発者 | Unknown |
支払い方法 | free |
対応言語 | 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" ] } |