Steam Chat Auto Scroll
Automatically scrolls the Steam Web Chat window on new message.
Steam Chat Auto Scroll क्या है?
Steam Chat Auto Scroll Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically scrolls the Steam Web Chat window on new message."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Steam Chat Auto Scroll एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |