Return YouTube Comment Username
This script replaces the "handle" in the YouTube comments section to user name
Cos'è Return YouTube Comment Username?
Return YouTube Comment Username è un'estensione di Chrome sviluppata da yakisova41, e la sua funzione principale è "This script replaces the "handle" in the YouTube comments section to user name".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Return YouTube Comment Username
Scarica i file di estensione Return YouTube Comment Username in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
"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
Informazioni di Base sull'Estensione
Nome | Return YouTube Comment Username |
ID | kamibelompadnaekbellinmgbphoidmj |
URL Ufficiale | https://chromewebstore.google.com/detail/return-youtube-comment-us/kamibelompadnaekbellinmgbphoidmj |
Descrizione | This script replaces the "handle" in the YouTube comments section to user name |
Dimensione del File | 14.86 KB |
Conteggio Installazioni | 10,000 |
Versione Corrente | 0.4.1 |
Ultimo Aggiornamento | 2024-02-06 |
Data di Pubblicazione | 2023-03-11 |
Valutazione | 4.23/5 Totale 90 Valutazioni |
Sviluppatore | yakisova41 |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://rycu.yakisova.com/ |
URL della Pagina di Aiuto | https://github.com/yakisova41/return-youtube-comment-username/issues |
Lingue Supportate | 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" ] } ] } |