mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-10 18:21:47 +00:00
21 lines
512 B
JavaScript
21 lines
512 B
JavaScript
const config = require("./config");
|
|
|
|
module.exports = () => [
|
|
{
|
|
label: "Automatically select last used caption",
|
|
type: "checkbox",
|
|
checked: config.get("autoload"),
|
|
click: (item) => {
|
|
config.set('autoload', item.checked);
|
|
}
|
|
},
|
|
{
|
|
label: "No captions by default",
|
|
type: "checkbox",
|
|
checked: config.get("disabledCaptions"),
|
|
click: (item) => {
|
|
config.set('disableCaptions', item.checked);
|
|
},
|
|
}
|
|
];
|