Telegram Chat Scroller
Telegram Chat Scroller
Co to jest Telegram Chat Scroller?
Telegram Chat Scroller to rozszerzenie Chrome opracowane przez Heptiom, a jego główną funkcją jest „Telegram Chat Scroller”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Telegram Chat Scroller
Pobierz pliki rozszerzeń Telegram Chat Scroller w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | aeepgoojfgbikjibibckijjapcfmlmpk |
| Oficjalny URL | https://chrome.google.com/webstore/detail/telegram-chat-scroller/aeepgoojfgbikjibibckijjapcfmlmpk |
| Opis | Telegram Chat Scroller |
| Rozmiar pliku | 11.93 KB |
| Liczba instalacji | 1,000 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2016-12-27 |
| Data Publikacji | 2016-12-27 |
| Ocena | 3.67/5 Łącznie 12 Oceny |
| Deweloper | Heptiom |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | http://heptiom.com/ |
| Obsługiwane Języki | 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]"
}
]
} | |