SendMe Telegram
Allows you to send links, images, maps, quotes from browser to your Telegram via bot.
什么是SendMe Telegram?
SendMe Telegram是由Oleksandr Us开发的Chrome扩展程序,该扩展的主要功能是“Allows you to send links, images, maps, quotes from browser to your Telegram via bot.”。
扩展截图
下载SendMe Telegram扩展crx文件
下载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\/*" ] } |