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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ilya Zverev และคุณลักษณะหลักของมันคือ "Send any text, link, or an image to your Telegram account via the Teleput bot."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Teleput - Send to Telegram
ดาวน์โหลดไฟล์ส่วนขยาย 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]" } } } |