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.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Send to Telegram for Google Chrome擴展crx文件

下載Send to Telegram for Google Chrome擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        * 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 Send to Telegram for Google Chrome
ID dgblfklicldlbclahclbkeiacpiiancc
官方網址 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
}