Teleput - Send to Telegram

Send any text, link, or an image to your Telegram account via the Teleput bot.

O que é Teleput - Send to Telegram?

Teleput - Send to Telegram é uma extensão do Chrome desenvolvida por Ilya Zverev, e sua principal característica é "Send any text, link, or an image to your Telegram account via the Teleput bot.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Teleput - Send to Telegram

Baixe arquivos de extensão Teleput - Send to Telegram no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Teleput - Send to Telegram Teleput - Send to Telegram
ID bakfkhpiolmlmgbhfkahdgpafkaomkob
URL Oficial https://chromewebstore.google.com/detail/teleput-send-to-telegram/bakfkhpiolmlmgbhfkahdgpafkaomkob
Descrição Send any text, link, or an image to your Telegram account via the Teleput bot.
Tamanho do Arquivo 12.25 KB
Contagem de Instalações 126
Versão Atual 1.0
Última Atualização 2021-05-21
Data de Publicação 2021-05-21
Classificação 4.83/5 Total de 6 Avaliações
Desenvolvedor Ilya Zverev
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Zverik/teleput-ext
Idiomas Suportados 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]"
        }
    }
}