Telegram Chat Scroller

Telegram Chat Scroller

O que é Telegram Chat Scroller?

Telegram Chat Scroller é uma extensão do Chrome desenvolvida por Heptiom, e sua principal característica é "Telegram Chat Scroller".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Telegram Chat Scroller

Baixe arquivos de extensão Telegram Chat Scroller 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

                        This extensions lets you scroll up or down with a high speed on Telegram Web. It might be useful when you are trying to recover your message history and need to load all the messages in a conversation. Normally, you would have to keep scrolling up until you reach the beginning of the chat. With this extension, you only have to click a button and sit back and wait.                    

Informações Básicas da Extensão

Nome Telegram Chat Scroller Telegram Chat Scroller
ID aeepgoojfgbikjibibckijjapcfmlmpk
URL Oficial https://chrome.google.com/webstore/detail/telegram-chat-scroller/aeepgoojfgbikjibibckijjapcfmlmpk
Descrição Telegram Chat Scroller
Tamanho do Arquivo 11.93 KB
Contagem de Instalações 1,000
Versão Atual 1.0
Última Atualização 2016-12-27
Data de Publicação 2016-12-27
Classificação 3.67/5 Total de 12 Avaliações
Desenvolvedor Heptiom
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://heptiom.com/
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Telegram Chat Scroller",
    "description": "Telegram Chat Scroller",
    "version": "1.0",
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "icons": {
        "16": "icon\/tg_scroller_16.png",
        "48": "icon\/tg_scroller_48.png",
        "128": "icon\/tg_scroller_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.telegram.org\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_title": "Telegram Scroller",
        "default_popup": "popup.html"
    },
    "manifest_version": 2,
    "author": [
        {
            "name": "Korosh Ahangar",
            "url": "http:\/\/heptiom.com\/",
            "email": "[email protected]"
        }
    ]
}