Return YouTube Comment Username
This script replaces the "handle" in the YouTube comments section to user name
Return YouTube Comment Username là gì?
Return YouTube Comment Username là một tiện ích mở rộng Chrome được phát triển bởi yakisova41, và tính năng chính của nó là "This script replaces the "handle" in the YouTube comments section to user name".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Return YouTube Comment Username
Tải xuống các tệp mở rộng Return YouTube Comment Username dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
"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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Return YouTube Comment Username |
ID | kamibelompadnaekbellinmgbphoidmj |
URL Chính Thức | https://chromewebstore.google.com/detail/return-youtube-comment-us/kamibelompadnaekbellinmgbphoidmj |
Mô tả | This script replaces the "handle" in the YouTube comments section to user name |
Kích Thước Tệp | 14.86 KB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 0.4.1 |
Cập Nhật Lần Cuối | 2024-02-06 |
Ngày Phát Hành | 2023-03-11 |
Đánh Giá | 4.23/5 Tổng số 90 Đánh Giá |
Nhà Phát Triển | yakisova41 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://rycu.yakisova.com/ |
URL Trang Trợ Giúp | https://github.com/yakisova41/return-youtube-comment-username/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |