Return YouTube Comment Username
This script replaces the "handle" in the YouTube comments section to user name
Wat is Return YouTube Comment Username?
Return YouTube Comment Username is een Chrome-extensie ontwikkeld door yakisova41, en de belangrijkste functie is "This script replaces the "handle" in the YouTube comments section to user name".
Extensie Screenshots
Download het CRX-bestand van de extensie Return YouTube Comment Username
Download Return YouTube Comment Username-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
"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
Basisinformatie over de Extensie
Naam | Return YouTube Comment Username |
ID | kamibelompadnaekbellinmgbphoidmj |
Officiële URL | https://chromewebstore.google.com/detail/return-youtube-comment-us/kamibelompadnaekbellinmgbphoidmj |
Beschrijving | This script replaces the "handle" in the YouTube comments section to user name |
Bestandsgrootte | 14.86 KB |
Aantal Installaties | 10,000 |
Huidige Versie | 0.4.1 |
Laatst Bijgewerkt | 2024-02-06 |
Publicatiedatum | 2023-03-11 |
Beoordeling | 4.23/5 Totaal 90 Beoordelingen |
Ontwikkelaar | yakisova41 |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://rycu.yakisova.com/ |
Help Pagina-URL | https://github.com/yakisova41/return-youtube-comment-username/issues |
Ondersteunde Talen | 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" ] } ] } |