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 Ilya Zverev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Send any text, link, or an image to your Telegram account via the Teleput bot."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Teleput - Send to Telegram एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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