Teleput - Send to Telegram
Send any text, link, or an image to your Telegram account via the Teleput bot.
Cos'è Teleput - Send to Telegram?
Teleput - Send to Telegram è un'estensione di Chrome sviluppata da Ilya Zverev, e la sua funzione principale è "Send any text, link, or an image to your Telegram account via the Teleput bot.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Teleput - Send to Telegram
Scarica i file di estensione Teleput - Send to Telegram in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | bakfkhpiolmlmgbhfkahdgpafkaomkob |
| URL Ufficiale | https://chromewebstore.google.com/detail/teleput-send-to-telegram/bakfkhpiolmlmgbhfkahdgpafkaomkob |
| Descrizione | Send any text, link, or an image to your Telegram account via the Teleput bot. |
| Dimensione del File | 12.25 KB |
| Conteggio Installazioni | 126 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2021-05-21 |
| Data di Pubblicazione | 2021-05-21 |
| Valutazione | 4.83/5 Totale 6 Valutazioni |
| Sviluppatore | Ilya Zverev |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/Zverik/teleput-ext |
| Lingue Supportate | 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]"
}
}
} | |