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
公式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
Eメール [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
}