Disable description displayer

This commit is contained in:
Arne Keller 2019-07-23 17:19:22 +02:00
parent 39fdbd3ac1
commit 9bda48232c

View File

@ -79,16 +79,18 @@ browser.runtime.onMessage.addListener(window.ytacListener);
console.log("[YTAC] added action listener");
function modifyThings() {
let repeating = false;
//let repeating = false;
// autoplay disabler
let autoplayButton = document.getElementById("toggle");
if (autoplayButton == null) {
console.warn("[YTAC] could not locate autoplay button");
setTimeout(modifyThings, 10000);
} else if (autoplayButton.getAttribute("aria-pressed") === "true") {
autoplayButton.click();
}
// description expander
/*
let showMoreButton = document.getElementsByClassName("more-button");
if (showMoreButton.length == 0) {
console.warn("[YTAC] could not locate description expander, trying again in 5s");
@ -96,6 +98,7 @@ function modifyThings() {
} else {
showMoreButton[0].click();
}
*/
}
modifyThings();
@ -107,4 +110,4 @@ function hideNotificationCount() {
a.innerText = a.innerText.substr(a.innerText.indexOf(")") + 2);
}
}
setInterval(hideNotificationCount, 1000);
setInterval(hideNotificationCount, 1000);