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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } |