Telegram Chat Scroller

Telegram Chat Scroller

¿Qué es Telegram Chat Scroller?

Telegram Chat Scroller es una extensión de Chrome desarrollada por Heptiom, y su función principal es "Telegram Chat Scroller".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Telegram Chat Scroller

Descarga archivos de extensión Telegram Chat Scroller en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Telegram Chat Scroller Telegram Chat Scroller
ID aeepgoojfgbikjibibckijjapcfmlmpk
URL Oficial https://chrome.google.com/webstore/detail/telegram-chat-scroller/aeepgoojfgbikjibibckijjapcfmlmpk
Descripción Telegram Chat Scroller
Tamaño del Archivo 11.93 KB
Cantidad de Instalaciones 1,000
Versión Actual 1.0
Última Actualización 2016-12-27
Fecha de Publicación 2016-12-27
Calificación 3.67/5 Total de 12 Calificaciones
Desarrollador Heptiom
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://heptiom.com/
Idiomas Soportados 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]"
        }
    ]
}