Telegram Chat Scroller
Telegram Chat Scroller
Wat is Telegram Chat Scroller?
Telegram Chat Scroller is een Chrome-extensie ontwikkeld door Heptiom, en de belangrijkste functie is "Telegram Chat Scroller".
Extensie Screenshots
Download het CRX-bestand van de extensie Telegram Chat Scroller
Download Telegram Chat Scroller-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | aeepgoojfgbikjibibckijjapcfmlmpk |
| Officiële URL | https://chrome.google.com/webstore/detail/telegram-chat-scroller/aeepgoojfgbikjibibckijjapcfmlmpk |
| Beschrijving | Telegram Chat Scroller |
| Bestandsgrootte | 11.93 KB |
| Aantal Installaties | 1,000 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2016-12-27 |
| Publicatiedatum | 2016-12-27 |
| Beoordeling | 3.67/5 Totaal 12 Beoordelingen |
| Ontwikkelaar | Heptiom |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | http://heptiom.com/ |
| Ondersteunde Talen | 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]"
}
]
} | |