Send to Telegram for Google Chrome
Send to Telegram for Google Chrome, with your own key and token.
O que é Send to Telegram for Google Chrome?
Send to Telegram for Google Chrome é uma extensão do Chrome desenvolvida por Penghui Guo, e sua principal característica é "Send to Telegram for Google Chrome, with your own key and token.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Send to Telegram for Google Chrome
Baixe arquivos de extensão Send to Telegram for Google Chrome no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
* 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".
Informações Básicas da Extensão
Nome | Send to Telegram for Google Chrome |
ID | dgblfklicldlbclahclbkeiacpiiancc |
URL Oficial | https://chromewebstore.google.com/detail/send-to-telegram-for-goog/dgblfklicldlbclahclbkeiacpiiancc |
Descrição | Send to Telegram for Google Chrome, with your own key and token. |
Tamanho do Arquivo | 412 KB |
Contagem de Instalações | 1,001 |
Versão Atual | 0.0.0.2 |
Última Atualização | 2022-03-28 |
Data de Publicação | 2021-03-30 |
Classificação | 3.85/5 Total de 13 Avaliações |
Desenvolvedor | Penghui Guo |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/phguo/Send-to-Telegram-Chrome-extension |
URL da Página de Ajuda | https://github.com/phguo/Send-to-Telegram-Chrome-extension |
Idiomas Suportados | 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 } |