SendMe Telegram

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

Qu'est-ce que SendMe Telegram ?

SendMe Telegram est une extension Chrome développée par Oleksandr Us, et sa fonction principale est "Allows you to send links, images, maps, quotes from browser to your Telegram via bot.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension SendMe Telegram

Téléchargez les fichiers d'extension SendMe Telegram au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom SendMe Telegram SendMe Telegram
ID ckkfnchnfmgpiejgaacmbngkcjbaaipd
URL Officiel https://chromewebstore.google.com/detail/sendme-telegram/ckkfnchnfmgpiejgaacmbngkcjbaaipd
Description Allows you to send links, images, maps, quotes from browser to your Telegram via bot.
Taille du Fichier 515 KB
Nombre d'Installations 8,054
Version Actuelle 0.3.0
Dernière Mise à Jour 2022-06-27
Date de Publication 2016-04-13
Évaluation 4.26/5 Total 113 Évaluations
Développeur Oleksandr Us
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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\/*"
    ]
}