Return YouTube Comment Username
This script replaces the "handle" in the YouTube comments section to user name
Return YouTube Comment Usernameคืออะไร?
Return YouTube Comment Username เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yakisova41 และคุณลักษณะหลักของมันคือ "This script replaces the "handle" in the YouTube comments section to user name"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Return YouTube Comment Username
ดาวน์โหลดไฟล์ส่วนขยาย Return YouTube Comment Username ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
"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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Return YouTube Comment Username |
ID | kamibelompadnaekbellinmgbphoidmj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/return-youtube-comment-us/kamibelompadnaekbellinmgbphoidmj |
คำอธิบาย | This script replaces the "handle" in the YouTube comments section to user name |
ขนาดไฟล์ | 14.86 KB |
จำนวนการติดตั้ง | 10,000 |
เวอร์ชันปัจจุบัน | 0.4.1 |
อัปเดตครั้งล่าสุด | 2024-02-06 |
วันที่เผยแพร่ | 2023-03-11 |
คะแนน | 4.23/5 รวมทั้งหมด 90 คะแนน |
ผู้พัฒนา | yakisova41 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://rycu.yakisova.com/ |
URL หน้าช่วยเหลือ | https://github.com/yakisova41/return-youtube-comment-username/issues |
ภาษาที่รองรับ | 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" ] } ] } |