Steam Chat Auto Scroll

Automatically scrolls the Steam Web Chat window on new message.

Cos'è Steam Chat Auto Scroll?

Steam Chat Auto Scroll è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Automatically scrolls the Steam Web Chat window on new message.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Steam Chat Auto Scroll

Scarica i file di estensione Steam Chat Auto Scroll in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Steam Chat Auto Scroll Steam Chat Auto Scroll
ID bcijdddmmglcfbbekdkepcainmnnomfl
URL Ufficiale https://chromewebstore.google.com/detail/steam-chat-auto-scroll/bcijdddmmglcfbbekdkepcainmnnomfl
Descrizione Automatically scrolls the Steam Web Chat window on new message.
Dimensione del File 468 KB
Conteggio Installazioni 54
Versione Corrente 1.1
Ultimo Aggiornamento 2018-09-24
Data di Pubblicazione 2018-09-24
Valutazione 4.86/5 Totale 7 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}