Send to Telegram for Google Chrome
Send to Telegram for Google Chrome, with your own key and token.
Send to Telegram for Google Chrome란 무엇입니까?
Send to Telegram for Google Chrome은(는) Penghui Guo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Send to Telegram for Google Chrome, with your own key and token."입니다.
확장 프로그램 스크린샷
Send to Telegram for Google Chrome 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
* IT WORKS (UPDATED: 2022-03-27) * This extension send website content to your Telegram Bot with official API, without passing through any third party server. Source code can be found at : https://github.com/phguo/Send-to-Telegram-Chrome-extension. HOW TO START: 1. Create your Telegram Bot; 2. Obtain "API token" (https://core.telegram.org/bots#6-botfather) and "user_id"; 3. Enjoy. NOTICE: 1. How to obtain user_id: after your bot is created, SEND SOMETHING TO IT, then visit "https://api.telegram.org/bot/getUpdates", the field "id" is your "user_id".
확장 프로그램 기본 정보
이름 | Send to Telegram for Google Chrome |
ID | dgblfklicldlbclahclbkeiacpiiancc |
공식 URL | https://chromewebstore.google.com/detail/send-to-telegram-for-goog/dgblfklicldlbclahclbkeiacpiiancc |
설명 | Send to Telegram for Google Chrome, with your own key and token. |
파일 크기 | 412 KB |
설치 횟수 | 1,001 |
현재 버전 | 0.0.0.2 |
최근 업데이트 | 2022-03-28 |
출시 날짜 | 2021-03-30 |
평점 | 3.85/5 총 13 개의 평점 |
개발자 | Penghui Guo |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/phguo/Send-to-Telegram-Chrome-extension |
도움말 페이지 URL | https://github.com/phguo/Send-to-Telegram-Chrome-extension |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Send to Telegram for Google Chrome", "version": "0.0.0.2", "description": "Send to Telegram for Google Chrome, with your own key and token.", "browser_action": { "default_icon": "tg.png", "default_title": "Push this page!" }, "background": { "scripts": [ "background.js" ] }, "icons": { "128": "tg.png" }, "options_page": "options.html", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "contextMenus" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js" ] } ], "manifest_version": 2 } |