mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 10:31:47 +00:00
14 lines
350 B
JavaScript
14 lines
350 B
JavaScript
const { setMenuOptions } = require("../../config/plugins");
|
|
|
|
module.exports = (win, options) => [
|
|
{
|
|
label: "Force Remove Video Tab",
|
|
type: "checkbox",
|
|
checked: options.forceHide,
|
|
click: item => {
|
|
options.forceHide = item.checked;
|
|
setMenuOptions("video-toggle", options);
|
|
}
|
|
}
|
|
];
|