SendMe Telegram
Allows you to send links, images, maps, quotes from browser to your Telegram via bot.
Что такое SendMe Telegram?
SendMe Telegram - это расширение Chrome, разработанное Oleksandr Us, и его основная функция - "Allows you to send links, images, maps, quotes from browser to your Telegram via bot.".
Снимки экрана расширения
Скачать файл CRX расширения SendMe Telegram
Скачайте файлы расширений SendMe Telegram в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
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\/*" ] } |