mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-09 01:31:46 +00:00
21 lines
444 B
JavaScript
21 lines
444 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);
|
|
},
|
|
},
|
|
];
|