YouTube™ Comment Translate

Automatically translate YouTube comments using the Google-Translate API

Τι είναι το YouTube™ Comment Translate;

Το YouTube™ Comment Translate είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον toluschr, και η κύρια λειτουργία του είναι "Automatically translate YouTube comments using the Google-Translate API".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης YouTube™ Comment Translate

Λήψη αρχείων επέκτασης YouTube™ Comment Translate σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension allows the user to translate YouTube comments with the click of a single button, right next to the comment. This is useful, i.e. when listening to music from other countries. The sourcecode is openly available on GitHub.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα YouTube™ Comment Translate YouTube™ Comment Translate
ID alaejlmlpgcffloicejpccebbeeibemo
Επίσημο URL https://chromewebstore.google.com/detail/youtube-comment-translate/alaejlmlpgcffloicejpccebbeeibemo
Περιγραφή Automatically translate YouTube comments using the Google-Translate API
Μέγεθος Αρχείου 35.86 KB
Αριθμός Εγκαταστάσεων 36,447
Τρέχουσα Έκδοση 1.2.4
Τελευταία Ενημέρωση 2024-02-02
Ημερομηνία Δημοσίευσης 2020-11-26
Αξιολόγηση 4.41/5 Συνολικά 91 Αξιολογήσεις
Προγραμματιστής toluschr
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/toluschr/Youtube-Comment-Translate
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/toluschr/YouTube-Comment-Translate/issues/new
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube\u2122 Comment Translate",
    "version": "1.2.4",
    "description": "Automatically translate YouTube comments using the Google-Translate API",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "inject.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "manifest_version": 3,
    "content_security_policy": [],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ]
}