mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-17 21:22:05 +00:00
Initial commit - app + 4 plugins
This commit is contained in:
21
store/index.js
Normal file
21
store/index.js
Normal file
@ -0,0 +1,21 @@
|
||||
const Store = require("electron-store");
|
||||
const plugins = require("./plugins");
|
||||
|
||||
const store = new Store({
|
||||
defaults: {
|
||||
"window-size": {
|
||||
width : 1100,
|
||||
height: 550
|
||||
},
|
||||
url : "https://music.youtube.com",
|
||||
plugins: ["navigation", "shortcuts", "adblocker", "no-google-login"]
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = {
|
||||
store : store,
|
||||
isPluginEnabled : plugin => plugins.isEnabled(store, plugin),
|
||||
getEnabledPlugins: () => plugins.getEnabledPlugins(store),
|
||||
enableplugin : plugin => plugins.enablePlugin(store, plugin),
|
||||
disablePlugin : plugin => plugins.disablePlugin(store, plugin)
|
||||
};
|
||||
Reference in New Issue
Block a user