Steam Chat Auto Scroll

Automatically scrolls the Steam Web Chat window on new message.

ما هو Steam Chat Auto Scroll؟

Steam Chat Auto Scroll هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Automatically scrolls the Steam Web Chat window on new message.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Steam Chat Auto Scroll

قم بتنزيل ملفات الامتداد Steam Chat Auto Scroll بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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"
    ]
}