Facebook
From hage, 1 Month ago, written in JavaScript.
Embed
Download Paste or View Raw
Hits: 143
  1. var video = document.querySelector('video[loop]');
  2. if (video) {
  3.     var menuLabels = document.querySelectorAll('.ytp-menuitem-label');
  4.     menuLabels.forEach(function(label) {
  5.       if (label.textContent === 'ループ再生') {
  6.         label.click();
  7.         console.log("clicked");
  8.       }
  9.     });
  10. }