SendMe Telegram

Allows you to send links, images, maps, quotes from browser to your Telegram via bot.

SendMe Telegram क्या है?

SendMe Telegram Oleksandr Us द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to send links, images, maps, quotes from browser to your Telegram via bot."।

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

screenshot
screenshot

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

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

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

                        Extension allow to send any links, images and text to Telegram directly from your web browser!

What's new in 0.3.0:
- no more additional text when sending a link (just url).
- dark/light theme icon. Icon is changing accordingly to your browser/system theme.

***LIFEHACK***
Use context menu:
-send image
-send selected text
-send link URL
-send active page by clicking icon                    

एक्सटेंशन की मूल जानकारी

नाम SendMe Telegram SendMe Telegram
ID ckkfnchnfmgpiejgaacmbngkcjbaaipd
आधिकारिक URL https://chromewebstore.google.com/detail/sendme-telegram/ckkfnchnfmgpiejgaacmbngkcjbaaipd
विवरण Allows you to send links, images, maps, quotes from browser to your Telegram via bot.
फ़ाइल का आकार 515 KB
स्थापना संख्या 8,054
वर्तमान संस्करण 0.3.0
अंतिम अपडेट 2022-06-27
प्रकाशन तिथि 2016-04-13
रेटिंग 4.26/5 कुल 113 रेटिंग्स
डेवलपर Oleksandr Us
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "short_name": "__MSG_extName__",
    "version": "0.3.0",
    "description": "__MSG_extDesc__",
    "author": "Alexander Us",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "default_locale": "en",
    "background": {
        "persistent": true,
        "page": "background.html"
    },
    "icons": {
        "16": "menu_icon.png",
        "48": "sendme48.png",
        "128": "sendme128.png"
    },
    "browser_action": {
        "default_icon": "sendme.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "sendme.js"
            ],
            "all_frames": false,
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "contextMenus",
        "https:\/\/sendme.duckdns.org\/*"
    ]
}