Return YouTube Comment Username
This script replaces the "handle" in the YouTube comments section to user name
Co to jest Return YouTube Comment Username?
Return YouTube Comment Username to rozszerzenie Chrome opracowane przez yakisova41, a jego główną funkcją jest „This script replaces the "handle" in the YouTube comments section to user name”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Return YouTube Comment Username
Pobierz pliki rozszerzeń Return YouTube Comment Username w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
"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
Podstawowe informacje o rozszerzeniu
Nazwa | Return YouTube Comment Username |
ID | kamibelompadnaekbellinmgbphoidmj |
Oficjalny URL | https://chromewebstore.google.com/detail/return-youtube-comment-us/kamibelompadnaekbellinmgbphoidmj |
Opis | This script replaces the "handle" in the YouTube comments section to user name |
Rozmiar pliku | 14.86 KB |
Liczba instalacji | 10,000 |
Aktualna Wersja | 0.4.1 |
Ostatnia Aktualizacja | 2024-02-06 |
Data Publikacji | 2023-03-11 |
Ocena | 4.23/5 Łącznie 90 Oceny |
Deweloper | yakisova41 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://rycu.yakisova.com/ |
Adres URL Strony Pomocy | https://github.com/yakisova41/return-youtube-comment-username/issues |
Obsługiwane Języki | 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" ] } ] } |