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.”。
扩展截图
下载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 |
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 |
电子邮箱 | [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]" } } } |