Return YouTube Comment Username
This script replaces the "handle" in the YouTube comments section to user name
O que é Return YouTube Comment Username?
Return YouTube Comment Username é uma extensão do Chrome desenvolvida por yakisova41, e sua principal característica é "This script replaces the "handle" in the YouTube comments section to user name".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Return YouTube Comment Username
Baixe arquivos de extensão Return YouTube Comment Username no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
"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
Informações Básicas da Extensão
Nome | Return YouTube Comment Username |
ID | kamibelompadnaekbellinmgbphoidmj |
URL Oficial | https://chromewebstore.google.com/detail/return-youtube-comment-us/kamibelompadnaekbellinmgbphoidmj |
Descrição | This script replaces the "handle" in the YouTube comments section to user name |
Tamanho do Arquivo | 14.86 KB |
Contagem de Instalações | 10,000 |
Versão Atual | 0.4.1 |
Última Atualização | 2024-02-06 |
Data de Publicação | 2023-03-11 |
Classificação | 4.23/5 Total de 90 Avaliações |
Desenvolvedor | yakisova41 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://rycu.yakisova.com/ |
URL da Página de Ajuda | https://github.com/yakisova41/return-youtube-comment-username/issues |
Idiomas Suportados | 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" ] } ] } |