Files
BetterYGG/contentScripts/allPages/accessAllPages.js
2025-12-23 22:56:12 +01:00

14 lines
365 B
JavaScript

hideSidebar();
window.addEventListener('resize', function () {
hideSidebar();
});
function hideSidebar() {
if (window.innerWidth < 1750) {
document.querySelectorAll('#cat, .back-cat').forEach(el => el.classList.remove('active'));
} else {
document.querySelectorAll('#cat, .back-cat').forEach(el => el.classList.add('active'));
}
}