Teleput - Send to Telegram

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

Teleput - Send to Telegramとは何ですか?

Teleput - Send to TelegramはIlya Zverevによって開発されたChromeの拡張機能で、その主な機能は「Send any text, link, or an image to your Telegram account via the Teleput bot.」です。

拡張機能のスクリーンショット

screenshot

Teleput - Send to Telegram拡張機能のCRXファイルをダウンロード

Teleput - Send to Telegram拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Teleput - Send to Telegram Teleput - Send to Telegram
ID bakfkhpiolmlmgbhfkahdgpafkaomkob
公式URL https://chromewebstore.google.com/detail/teleput-send-to-telegram/bakfkhpiolmlmgbhfkahdgpafkaomkob
説明 Send any text, link, or an image to your Telegram account via the Teleput bot.
ファイルサイズ 12.25 KB
インストール数 126
現在のバージョン 1.0
最終更新日 2021-05-21
公開日 2021-05-21
評価 4.83/5 合計 6 レビュー
開発者 Ilya Zverev
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Zverik/teleput-ext
対応言語 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]"
        }
    }
}