Telegram Chat Scroller

Telegram Chat Scroller

什麼是Telegram Chat Scroller?

Telegram Chat Scroller是由Heptiom開發的Chrome擴展程式,該擴展的主要功能是“Telegram Chat Scroller”。

擴展截圖

screenshot

下載Telegram Chat Scroller擴展crx文件

下載Telegram Chat Scroller擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Telegram Chat Scroller Telegram Chat Scroller
ID aeepgoojfgbikjibibckijjapcfmlmpk
官方網址 https://chrome.google.com/webstore/detail/telegram-chat-scroller/aeepgoojfgbikjibibckijjapcfmlmpk
簡介 Telegram Chat Scroller
檔案大小 11.93 KB
安裝次數 1,000
目前版本 1.0
更新時間 2016-12-27
上架時間 2016-12-27
評分 3.67/5 共 12 次評分
開發者 Heptiom
電子郵箱 [email protected]
付費類型 free
擴展官網 http://heptiom.com/
支援的語言 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]"
        }
    ]
}