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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Penghui Guo, και η κύρια λειτουργία του είναι "Send to Telegram for Google Chrome, with your own key and token.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Send to Telegram for Google Chrome

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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
}