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 Penghui Guo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Send to Telegram for Google Chrome, with your own key and token."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Send to Telegram for Google Chrome एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
* 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 } |