mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 10:31:47 +00:00
Formatting
This commit is contained in:
@ -4,18 +4,18 @@ const plugins = require("./plugins");
|
||||
const store = new Store({
|
||||
defaults: {
|
||||
"window-size": {
|
||||
width : 1100,
|
||||
width: 1100,
|
||||
height: 550
|
||||
},
|
||||
url : "https://music.youtube.com",
|
||||
plugins: ["navigation", "shortcuts", "adblocker"]
|
||||
url: "https://music.youtube.com",
|
||||
plugins: ["navigation", "shortcuts", "adblocker"],
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = {
|
||||
store : store,
|
||||
isPluginEnabled : plugin => plugins.isEnabled(store, plugin),
|
||||
store: store,
|
||||
isPluginEnabled: plugin => plugins.isEnabled(store, plugin),
|
||||
getEnabledPlugins: () => plugins.getEnabledPlugins(store),
|
||||
enablePlugin : plugin => plugins.enablePlugin(store, plugin),
|
||||
disablePlugin : plugin => plugins.disablePlugin(store, plugin)
|
||||
enablePlugin: plugin => plugins.enablePlugin(store, plugin),
|
||||
disablePlugin: plugin => plugins.disablePlugin(store, plugin),
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user