Teleput - Send to Telegram

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

Co je Teleput - Send to Telegram?

Teleput - Send to Telegram je rozšíření Chrome vyvinuté Ilya Zverev, a jeho hlavní funkcí je „Send any text, link, or an image to your Telegram account via the Teleput bot.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Teleput - Send to Telegram

Stáhněte si soubory rozšíření Teleput - Send to Telegram ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Teleput - Send to Telegram Teleput - Send to Telegram
ID bakfkhpiolmlmgbhfkahdgpafkaomkob
Oficiální URL https://chromewebstore.google.com/detail/teleput-send-to-telegram/bakfkhpiolmlmgbhfkahdgpafkaomkob
Popis Send any text, link, or an image to your Telegram account via the Teleput bot.
Velikost souboru 12.25 KB
Počet instalací 126
Aktuální Verze 1.0
Poslední Aktualizace 2021-05-21
Datum Vydání 2021-05-21
Hodnocení 4.83/5 Celkem 6 Hodnocení
Vývojář Ilya Zverev
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/Zverik/teleput-ext
Podporované Jazyky 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]"
        }
    }
}