Steam Chat Auto Scroll

Automatically scrolls the Steam Web Chat window on new message.

O que é Steam Chat Auto Scroll?

Steam Chat Auto Scroll é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Automatically scrolls the Steam Web Chat window on new message.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Steam Chat Auto Scroll

Baixe arquivos de extensão Steam Chat Auto Scroll no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Steam Chat Auto Scroll Steam Chat Auto Scroll
ID bcijdddmmglcfbbekdkepcainmnnomfl
URL Oficial https://chromewebstore.google.com/detail/steam-chat-auto-scroll/bcijdddmmglcfbbekdkepcainmnnomfl
Descrição Automatically scrolls the Steam Web Chat window on new message.
Tamanho do Arquivo 468 KB
Contagem de Instalações 54
Versão Atual 1.1
Última Atualização 2018-09-24
Data de Publicação 2018-09-24
Classificação 4.86/5 Total de 7 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}