Removes the massive skip indicators on YouTube (">> 10 seconds")
当前为
// ==UserScript==
// @name YouTube: remove huge ">> 10 seconds" skip indicators
// @match https://www.youtube.com/*
// @description Removes the massive skip indicators on YouTube (">> 10 seconds")
// @version 1.0.2
// @grant none
// @namespace com.youtube.annoying.timeskips
// @author https://greasyfork.org/en/users/728793-keyboard-shortcuts
// @license MIT
// ==/UserScript==
(function() {
setInterval(function() {
var selectors = ['div.ytp-doubletap-ui', 'div.ytp-doubletap-ui-legacy'];
for (var i = 0; i < selectors.length; i++) {
var target = document.querySelector(selectors[i]);
if (target && target.parentNode) {
target.parentNode.removeChild(target);
}
}
}, 1000);
})();