mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-10 10:11:46 +00:00
Add plugin to always use the compact sidebar
This commit is contained in:
10
plugins/compact-sidebar/front.js
Normal file
10
plugins/compact-sidebar/front.js
Normal file
@ -0,0 +1,10 @@
|
||||
module.exports = () => {
|
||||
const compactSidebar = document.querySelector("#mini-guide");
|
||||
const isCompactSidebarDisabled =
|
||||
compactSidebar === null ||
|
||||
window.getComputedStyle(compactSidebar).display === "none";
|
||||
|
||||
if (isCompactSidebarDisabled) {
|
||||
document.querySelector("#button").click();
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user