Telegram Chat Scroller

Telegram Chat Scroller

Telegram Chat Scroller là gì?

Telegram Chat Scroller là một tiện ích mở rộng Chrome được phát triển bởi Heptiom, và tính năng chính của nó là "Telegram Chat Scroller".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Telegram Chat Scroller

Tải xuống các tệp mở rộng Telegram Chat Scroller dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Telegram Chat Scroller Telegram Chat Scroller
ID aeepgoojfgbikjibibckijjapcfmlmpk
URL Chính Thức https://chrome.google.com/webstore/detail/telegram-chat-scroller/aeepgoojfgbikjibibckijjapcfmlmpk
Mô tả Telegram Chat Scroller
Kích Thước Tệp 11.93 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-12-27
Ngày Phát Hành 2016-12-27
Đánh Giá 3.67/5 Tổng số 12 Đánh Giá
Nhà Phát Triển Heptiom
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://heptiom.com/
Ngôn Ngữ Được Hỗ Trợ 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]"
        }
    ]
}