mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-09 01:31:46 +00:00
17 lines
398 B
JavaScript
17 lines
398 B
JavaScript
const { toggleRomanized } = require('./back');
|
|
|
|
const { setOptions } = require('../../config/plugins');
|
|
|
|
module.exports = (win, options, refreshMenu) => [
|
|
{
|
|
label: 'Romanized Lyrics',
|
|
type: 'checkbox',
|
|
checked: options.romanizedLyrics,
|
|
click(item) {
|
|
options.romanizedLyrics = item.checked;
|
|
setOptions('lyrics-genius', options);
|
|
toggleRomanized();
|
|
},
|
|
},
|
|
];
|