-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathconfig.jsonc
More file actions
56 lines (55 loc) · 1.57 KB
/
config.jsonc
File metadata and controls
56 lines (55 loc) · 1.57 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"extendProfile": {
"path": "~/Library/Application Support/Firefox/Profiles/193rurer.default-release-1717101583037/",
"bookmarks": true,
"history": true,
"passwords": true,
"cookies": false,
"extensions": false
},
// // I like the regular theme for now but this one is great. Hats of to the
// // creator =)
"repos": ["materialfox.json"],
"extensions": {
"extend": ["tabliss.json", "bitwarden.json"]
},
"css": {
"extend": [
"macos-native-tabbar.css",
"sliding-bookmarks-menu.css",
"cleaner_extensions_menu.css",
"remove_min_max_close.css"
]
},
"userjs": {
"extend": ["disableAutoUpdate.js", "disablePasswords.js", "geolocation.js"]
},
"outputsPath": "outputs/profile",
"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/updateNotificationSlayer.uc.js"
]
}
}
}
},
"prefs": {
"network.trr.custom_uri": "https://dns.quad9.net/dns-query",
"network.trr.mode": 2,
"network.trr.uri": "https://dns.quad9.net/dns-query",
"devtools.toolbox.host": "right",
"devtools.debugger.remote-enabled": true
}
}