Teleput - Send to Telegram
Send any text, link, or an image to your Telegram account via the Teleput bot.
Teleput - Send to Telegram란 무엇입니까?
Teleput - Send to Telegram은(는) Ilya Zverev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Send any text, link, or an image to your Telegram account via the Teleput bot."입니다.
확장 프로그램 스크린샷
Teleput - Send to Telegram 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension adds a button and a context menu to send any link or image or selection to the Teleput bot (@teleput_bot), which in turn sends it to you. To get a key, open the bot and click "Start". No cloud tools or bot tokens needed! There is also a command-line tool for sending yourself messages and files, which you can install with pip install --user teleput.
확장 프로그램 기본 정보
이름 | Teleput - Send to Telegram |
ID | bakfkhpiolmlmgbhfkahdgpafkaomkob |
공식 URL | https://chromewebstore.google.com/detail/teleput-send-to-telegram/bakfkhpiolmlmgbhfkahdgpafkaomkob |
설명 | Send any text, link, or an image to your Telegram account via the Teleput bot. |
파일 크기 | 12.25 KB |
설치 횟수 | 126 |
현재 버전 | 1.0 |
최근 업데이트 | 2021-05-21 |
출시 날짜 | 2021-05-21 |
평점 | 4.83/5 총 6 개의 평점 |
개발자 | Ilya Zverev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Zverik/teleput-ext |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Teleput - Send to Telegram", "version": "1.0", "description": "Send any text, link, or an image to your Telegram account via the Teleput bot.", "icons": { "48": "teleput-48.png", "96": "teleput-96.png" }, "browser_action": { "default_icon": "teleput-48.png", "default_title": "Send to Telegram", "default_popup": "send_url.html" }, "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html", "browser_style": true, "chrome_style": true }, "permissions": [ "activeTab", "contextMenus", "storage" ], "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |