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. 擴展基本資訊
| 名稱 | |
| ID | bakfkhpiolmlmgbhfkahdgpafkaomkob |
| 官方網址 | 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]"
}
}
} | |