YouTube Auto Insert User Name Into Comment Reply Box

Automatically insert the user name whom you're replying to into the comment reply's edit box.

  1. // ==UserScript==
  2. // @name YouTube Auto Insert User Name Into Comment Reply Box
  3. // @namespace YouTubeAutoInsertUserNameIntoCommentReplyBox
  4. // @version 1.0.1
  5. // @description Automatically insert the user name whom you're replying to into the comment reply's edit box.
  6. // @author jcunews
  7. // @include https://www.youtube.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. addEventListener("click", function(ev, ele, author) {
  12. ele = ev.target;
  13. if (!ele.classList.contains("comment-renderer-reply")) return;
  14. ele = ele.parentNode.parentNode;
  15. author = ele.parentNode.querySelector(".comment-author-text");
  16. if (!author || !(ele = ele.querySelector(".comment-simplebox-text"))) return;
  17. ele.innerHTML = "+" + author.outerHTML + ": ";
  18. });

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址