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 |
官方網址 | 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" ] } |