mirror of
https://gitlab.com/arnekeller/yt-addiction-control.git
synced 2024-11-08 09:50:39 +00:00
Rehide other elements too
This commit is contained in:
parent
6b54383dec
commit
fc6341cb48
@ -56,7 +56,7 @@ window.ytacListener = (message) => {
|
||||
console.log("[YTAC] received browser action " + message.command);
|
||||
if (message.command == "comments") {
|
||||
console.log("[YTAC] showing comments");
|
||||
document.getElementById("ytaccomments").remove();
|
||||
document.getElementById("ytaccomments").remove();
|
||||
} else if (message.command == "sidebar") {
|
||||
console.log("[YTAC] showing video sidebar");
|
||||
document.getElementById("ytacsidebar").remove();
|
||||
@ -64,12 +64,15 @@ window.ytacListener = (message) => {
|
||||
} else if (message.command == "invideo") {
|
||||
console.log("[YTAC] showing in-video suggestions");
|
||||
document.getElementById("ytacinvideo").remove();
|
||||
addClickListeners("invideo");
|
||||
} else if (message.command == "endscreen") {
|
||||
console.log("[YTAC] showing endscreen");
|
||||
document.getElementById("ytacendscreen").remove();
|
||||
addClickListeners("endscreen");
|
||||
} else if (message.command == "notification") {
|
||||
console.log("[YTAC] showing notification bell");
|
||||
document.getElementById("ytacnotification").remove();
|
||||
addClickListeners("notification");
|
||||
}
|
||||
};
|
||||
browser.runtime.onMessage.addListener(window.ytacListener);
|
||||
|
Loading…
Reference in New Issue
Block a user