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]" } } } |