Teleput - Send to Telegram

Send any text, link, or an image to your Telegram account via the Teleput bot.

Teleput - Send to Telegram là gì?

Teleput - Send to Telegram là một tiện ích mở rộng Chrome được phát triển bởi Ilya Zverev, và tính năng chính của nó là "Send any text, link, or an image to your Telegram account via the Teleput bot.".

Ả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 Teleput - Send to Telegram

Tải xuống các tệp mở rộng Teleput - Send to Telegram 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 extension adds a button and a context menu to send any link or image or selection to the Teleput bot (@teleput_bot), which in turn sends it to you. To get a key, open the bot and click "Start". No cloud tools or bot tokens needed!

There is also a command-line tool for sending yourself messages and files, which you can install with pip install --user teleput.                    

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

Tên Teleput - Send to Telegram Teleput - Send to Telegram
ID bakfkhpiolmlmgbhfkahdgpafkaomkob
URL Chính Thức https://chromewebstore.google.com/detail/teleput-send-to-telegram/bakfkhpiolmlmgbhfkahdgpafkaomkob
Mô tả Send any text, link, or an image to your Telegram account via the Teleput bot.
Kích Thước Tệp 12.25 KB
Số Lần Cài Đặt 126
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-05-21
Ngày Phát Hành 2021-05-21
Đánh Giá 4.83/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Ilya Zverev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Zverik/teleput-ext
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Teleput - Send to Telegram",
    "version": "1.0",
    "description": "Send any text, link, or an image to your Telegram account via the Teleput bot.",
    "icons": {
        "48": "teleput-48.png",
        "96": "teleput-96.png"
    },
    "browser_action": {
        "default_icon": "teleput-48.png",
        "default_title": "Send to Telegram",
        "default_popup": "send_url.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}