mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-10 10:11:46 +00:00
16 lines
328 B
JavaScript
16 lines
328 B
JavaScript
function removeLoginElements() {
|
|
const elementsToRemove = [
|
|
".sign-in-link.ytmusic-nav-bar",
|
|
'.ytmusic-pivot-bar-renderer[tab-id="FEmusic_liked"]'
|
|
];
|
|
|
|
elementsToRemove.forEach(selector => {
|
|
const node = document.querySelector(selector);
|
|
if (node) {
|
|
node.remove();
|
|
}
|
|
});
|
|
}
|
|
|
|
module.exports = removeLoginElements;
|