Return YouTube Comment Username
This script replaces the "handle" in the YouTube comments section to user name
Τι είναι το Return YouTube Comment Username;
Το Return YouTube Comment Username είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον yakisova41, και η κύρια λειτουργία του είναι "This script replaces the "handle" in the YouTube comments section to user name".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Return YouTube Comment Username
Λήψη αρχείων επέκτασης Return YouTube Comment Username σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
"Return YouTube Comment Username" returns the comment username to its traditional username format. With YouTube's update, "handle" (user IDs starting with @) are now displayed in the name field of the comments section, and traditional usernames are no longer visible in the comments. This extension will replace the "handle" in the video comments section, community comments section, and the comments section of the top notification with your old username. If you find any bugs or problems, please feel free to submit an Issue on Github. https://github.com/yakisova41/return-youtube-comment-username/issues
Βασικές Πληροφορίες Επέκτασης
Όνομα | Return YouTube Comment Username |
ID | kamibelompadnaekbellinmgbphoidmj |
Επίσημο URL | https://chromewebstore.google.com/detail/return-youtube-comment-us/kamibelompadnaekbellinmgbphoidmj |
Περιγραφή | This script replaces the "handle" in the YouTube comments section to user name |
Μέγεθος Αρχείου | 14.86 KB |
Αριθμός Εγκαταστάσεων | 10,000 |
Τρέχουσα Έκδοση | 0.4.1 |
Τελευταία Ενημέρωση | 2024-02-06 |
Ημερομηνία Δημοσίευσης | 2023-03-11 |
Αξιολόγηση | 4.23/5 Συνολικά 90 Αξιολογήσεις |
Προγραμματιστής | yakisova41 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://rycu.yakisova.com/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/yakisova41/return-youtube-comment-username/issues |
Υποστηριζόμενες Γλώσσες | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_Name__", "short_name": "name", "version": "0.4.1", "manifest_version": 3, "description": "__MSG_Description__", "default_locale": "en", "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "resources": [ "embed.js" ] } ] } |