SendMe Telegram
Allows you to send links, images, maps, quotes from browser to your Telegram via bot.
¿Qué es SendMe Telegram?
SendMe Telegram es una extensión de Chrome desarrollada por Oleksandr Us, y su función principal es "Allows you to send links, images, maps, quotes from browser to your Telegram via bot.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión SendMe Telegram
Descarga archivos de extensión SendMe Telegram en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | SendMe Telegram |
ID | ckkfnchnfmgpiejgaacmbngkcjbaaipd |
URL Oficial | https://chromewebstore.google.com/detail/sendme-telegram/ckkfnchnfmgpiejgaacmbngkcjbaaipd |
Descripción | Allows you to send links, images, maps, quotes from browser to your Telegram via bot. |
Tamaño del Archivo | 515 KB |
Cantidad de Instalaciones | 8,054 |
Versión Actual | 0.3.0 |
Última Actualización | 2022-06-27 |
Fecha de Publicación | 2016-04-13 |
Calificación | 4.26/5 Total de 113 Calificaciones |
Desarrollador | Oleksandr Us |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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\/*" ] } |