YouTube channel location
Show info about the YouTube channel location(country) in the video description.
Τι είναι το YouTube channel location;
Το YouTube channel location είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον arsxrs, και η κύρια λειτουργία του είναι "Show info about the YouTube channel location(country) in the video description.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης YouTube channel location
Λήψη αρχείων επέκτασης YouTube channel location σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The extension adds a label with the region(location) information of the YouTube channel near the video description.
Βασικές Πληροφορίες Επέκτασης
Όνομα | YouTube channel location |
ID | lagfgccfpnemkkekoonccjidinipogpd |
Επίσημο URL | https://chrome.google.com/webstore/detail/lagfgccfpnemkkekoonccjidinipogpd |
Περιγραφή | Show info about the YouTube channel location(country) in the video description. |
Μέγεθος Αρχείου | 132 KB |
Αριθμός Εγκαταστάσεων | 763 |
Τρέχουσα Έκδοση | 1.4.1 |
Τελευταία Ενημέρωση | 2023-08-30 |
Ημερομηνία Δημοσίευσης | 2022-04-29 |
Αξιολόγηση | 4.56/5 Συνολικά 9 Αξιολογήσεις |
Προγραμματιστής | arsxrs |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en,ru,uk |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.4.1", "manifest_version": 3, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "action": [], "content_scripts": [ { "run_at": "document_start", "js": [ "content-script.js" ], "css": [ "content-script.css" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "options_ui": { "page": "options.html", "open_in_tab": true } } |