Send to Telegram for Google Chrome
Send to Telegram for Google Chrome, with your own key and token.
Send to Telegram for Google Chromeคืออะไร?
Send to Telegram for Google Chrome เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Penghui Guo และคุณลักษณะหลักของมันคือ "Send to Telegram for Google Chrome, with your own key and token."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Send to Telegram for Google Chrome
ดาวน์โหลดไฟล์ส่วนขยาย Send to Telegram for Google Chrome ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
* IT WORKS (UPDATED: 2022-03-27) * This extension send website content to your Telegram Bot with official API, without passing through any third party server. Source code can be found at : https://github.com/phguo/Send-to-Telegram-Chrome-extension. HOW TO START: 1. Create your Telegram Bot; 2. Obtain "API token" (https://core.telegram.org/bots#6-botfather) and "user_id"; 3. Enjoy. NOTICE: 1. How to obtain user_id: after your bot is created, SEND SOMETHING TO IT, then visit "https://api.telegram.org/bot/getUpdates", the field "id" is your "user_id".
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Send to Telegram for Google Chrome |
ID | dgblfklicldlbclahclbkeiacpiiancc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/send-to-telegram-for-goog/dgblfklicldlbclahclbkeiacpiiancc |
คำอธิบาย | Send to Telegram for Google Chrome, with your own key and token. |
ขนาดไฟล์ | 412 KB |
จำนวนการติดตั้ง | 1,001 |
เวอร์ชันปัจจุบัน | 0.0.0.2 |
อัปเดตครั้งล่าสุด | 2022-03-28 |
วันที่เผยแพร่ | 2021-03-30 |
คะแนน | 3.85/5 รวมทั้งหมด 13 คะแนน |
ผู้พัฒนา | Penghui Guo |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/phguo/Send-to-Telegram-Chrome-extension |
URL หน้าช่วยเหลือ | https://github.com/phguo/Send-to-Telegram-Chrome-extension |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Send to Telegram for Google Chrome", "version": "0.0.0.2", "description": "Send to Telegram for Google Chrome, with your own key and token.", "browser_action": { "default_icon": "tg.png", "default_title": "Push this page!" }, "background": { "scripts": [ "background.js" ] }, "icons": { "128": "tg.png" }, "options_page": "options.html", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "contextMenus" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js" ] } ], "manifest_version": 2 } |