Send to Telegram for Google Chrome

Send to Telegram for Google Chrome, with your own key and token.

Was ist Send to Telegram for Google Chrome?

Send to Telegram for Google Chrome ist eine Chrome-Erweiterung, die von Penghui Guo entwickelt wurde, und ihr Hauptmerkmal ist "Send to Telegram for Google Chrome, with your own key and token.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Send to Telegram for Google Chrome-Erweiterungs-CRX-Datei herunterladen

Laden Sie Send to Telegram for Google Chrome-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        * 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".                    

Grundlegende Informationen zur Erweiterung

Name Send to Telegram for Google Chrome Send to Telegram for Google Chrome
ID dgblfklicldlbclahclbkeiacpiiancc
Offizielle URL https://chromewebstore.google.com/detail/send-to-telegram-for-goog/dgblfklicldlbclahclbkeiacpiiancc
Beschreibung Send to Telegram for Google Chrome, with your own key and token.
Dateigröße 412 KB
Installationsanzahl 1,001
Aktuelle Version 0.0.0.2
Letztes Update 2022-03-28
Veröffentlichungsdatum 2021-03-30
Bewertung 3.85/5 Insgesamt 13 Bewertungen
Entwickler Penghui Guo
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/phguo/Send-to-Telegram-Chrome-extension
Hilfeseite URL https://github.com/phguo/Send-to-Telegram-Chrome-extension
Unterstützte Sprachen 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
}