SendMe Telegram
Allows you to send links, images, maps, quotes from browser to your Telegram via bot.
Cos'è SendMe Telegram?
SendMe Telegram è un'estensione di Chrome sviluppata da Oleksandr Us, e la sua funzione principale è "Allows you to send links, images, maps, quotes from browser to your Telegram via bot.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SendMe Telegram
Scarica i file di estensione SendMe Telegram in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | SendMe Telegram |
ID | ckkfnchnfmgpiejgaacmbngkcjbaaipd |
URL Ufficiale | https://chromewebstore.google.com/detail/sendme-telegram/ckkfnchnfmgpiejgaacmbngkcjbaaipd |
Descrizione | Allows you to send links, images, maps, quotes from browser to your Telegram via bot. |
Dimensione del File | 515 KB |
Conteggio Installazioni | 8,054 |
Versione Corrente | 0.3.0 |
Ultimo Aggiornamento | 2022-06-27 |
Data di Pubblicazione | 2016-04-13 |
Valutazione | 4.26/5 Totale 113 Valutazioni |
Sviluppatore | Oleksandr Us |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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\/*" ] } |