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 |
官方網址 | 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\/*" ] } |