-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathconfig.jsonc
More file actions
26 lines (26 loc) · 775 Bytes
/
config.jsonc
File metadata and controls
26 lines (26 loc) · 775 Bytes
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
26
{
"outputsPath": "outputs/profile",
// By default fx-autoconfig is disabled - Enable it like so
"custom-js": {
"isEnabled": true,
"options": {
"sources": {
// Sources are in the form [url]: {options}
"https://github.com/aminomancer/uc.css.js": {
// Name of the repo
"name": "uc.css.js",
// ID, repo will be cloned at outputsPath/repos/[id]
"id": "uccssjs",
// Files within the repo to copy to outputsPath/chrome/JS
"enabled": [
"JS/clearDownloadsButton.uc.js",
"JS/findbarMods.uc.js",
"JS/privateTabs.uc.js",
"JS/updateNotificationSlayer.uc.js",
"JS/animateContextMenus.uc.js"
]
}
}
}
}
}