-
Notifications
You must be signed in to change notification settings - Fork 2
/
init.js.sample
25 lines (18 loc) · 938 Bytes
/
init.js.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Receiver plugins initialization.
// everything after '//' is a comment.
// uncomment the next line to enable plugin debugging in browser console.
// Plugins._enable_debug = true;
// base URL for receiver plugins
const rp_url = 'https://0xaf.github.io/openwebrxplus-plugins/receiver';
// First load the utils, needed for some plugins
Plugins.load(rp_url + '/utils/utils.js').then(async function () {
// you can load a local plugins if you have one
//Plugins.load('example');
// Load the notification plugin, used by some plugins. await to ensure it is loaded before the rest.
await Plugins.load(rp_url + '/notify/notify.js');
// load remote plugins
// Plugins.load(rp_url + '/keyboard_shortcuts/keyboard_shortcuts.js');
Plugins.load(rp_url + '/colorful_spectrum/colorful_spectrum.js');
Plugins.load(rp_url + '/connect_notify/connect_notify.js');
// Plugins.load(rp_url + '/sort_profiles/sort_profiles.js');
});