Telegram Chat Scroller

Telegram Chat Scroller

Vad är Telegram Chat Scroller?

Telegram Chat Scroller är en Chrome-tillägg utvecklad av Heptiom, och dess huvudfunktion är "Telegram Chat Scroller".

Tilläggsskärmbilder

screenshot

Ladda ner Telegram Chat Scroller-förlängningens CRX-fil

Ladda ner Telegram Chat Scroller-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Telegram Chat Scroller Telegram Chat Scroller
ID aeepgoojfgbikjibibckijjapcfmlmpk
Officiell webbadress https://chrome.google.com/webstore/detail/telegram-chat-scroller/aeepgoojfgbikjibibckijjapcfmlmpk
Beskrivning Telegram Chat Scroller
Filstorlek 11.93 KB
Antal Installationer 1,000
Aktuell Version 1.0
Senast Uppdaterad 2016-12-27
Publiceringsdatum 2016-12-27
Betyg 3.67/5 Totalt 12 Betyg
Utvecklare Heptiom
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://heptiom.com/
Stödda Språk 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]"
        }
    ]
}