Add Link To Expand YouTube Community Comments

Add a link to expand YouTube Community comments

Version au 10/02/2017. Voir la dernière version.

// ==UserScript==
// @name           Add Link To Expand YouTube Community Comments
// @version        1.0
// @namespace      AddLinkToExpandYouTubeCommunityComments
// @description    Add a link to expand YouTube Community comments
// @author         jcunews
// @include        https://www.youtube.com/comments*
// ==/UserScript==

function expandCommentsInPage() {
  var i, eles = document.querySelectorAll('#yt-comments-list .comment-entry .expand');
  for (i = eles.length-1; i >= 0; i--) {
    eles[i].click();
  }
}

var btn = document.createElement("A");
btn.textContent = "Expand All Comments";
btn.style = "margin-left:2ex";
btn.href="javascript:void(0)";
btn.onclick = expandCommentsInPage;
document.querySelector("#ytch-root .tabs-container").appendChild(btn);