Steam Chat Auto Scroll
Automatically scrolls the Steam Web Chat window on new message.
Steam Chat Auto Scroll là gì?
Steam Chat Auto Scroll là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Automatically scrolls the Steam Web Chat window on new message.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Steam Chat Auto Scroll
Tải xuống các tệp mở rộng Steam Chat Auto Scroll dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Steam Chat Auto Scroll |
ID | bcijdddmmglcfbbekdkepcainmnnomfl |
URL Chính Thức | https://chromewebstore.google.com/detail/steam-chat-auto-scroll/bcijdddmmglcfbbekdkepcainmnnomfl |
Mô tả | Automatically scrolls the Steam Web Chat window on new message. |
Kích Thước Tệp | 468 KB |
Số Lần Cài Đặt | 54 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2018-09-24 |
Ngày Phát Hành | 2018-09-24 |
Đánh Giá | 4.86/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |