Teleput - Send to Telegram
Send any text, link, or an image to your Telegram account via the Teleput bot.
Qu'est-ce que Teleput - Send to Telegram ?
Teleput - Send to Telegram est une extension Chrome développée par Ilya Zverev, et sa fonction principale est "Send any text, link, or an image to your Telegram account via the Teleput bot.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Teleput - Send to Telegram
Téléchargez les fichiers d'extension Teleput - Send to Telegram au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Teleput - Send to Telegram |
ID | bakfkhpiolmlmgbhfkahdgpafkaomkob |
URL Officiel | https://chromewebstore.google.com/detail/teleput-send-to-telegram/bakfkhpiolmlmgbhfkahdgpafkaomkob |
Description | Send any text, link, or an image to your Telegram account via the Teleput bot. |
Taille du Fichier | 12.25 KB |
Nombre d'Installations | 126 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2021-05-21 |
Date de Publication | 2021-05-21 |
Évaluation | 4.83/5 Total 6 Évaluations |
Développeur | Ilya Zverev |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Zverik/teleput-ext |
Langues Prises en Charge | 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]" } } } |