-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrowser_config.py
More file actions
19 lines (18 loc) · 897 Bytes
/
browser_config.py
File metadata and controls
19 lines (18 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class Config():
url_allowlist = ['example.com']
url_blocklist = ['bonk.io', 'multiplayer.gg/physics']
homepage = "https://google.com" # All URLs in config files must start with http:// or https:// , otherwise the program will not work correctly!
startingpage = "https://slausonrobotics.top" # if starting page should be different than homepage, set to your homepage URL enclosed in quotes
runMode = "normal" # options: fullscreen, maximized, minimized, or normal
windowDimensions = [100, 100, 1000, 600] # dimensions: ax, ay, aw, ah (see PyQt5 setGeometry() function)
urlBarDisabled = False
showBackButton = True
showForwardButton = True
showRefreshButton = True
showHomeButton = False
#enablePolicyConfirm = True
# pb: url settings below
pbUrlsEnabled = True
exitURLEnabled = True
aboutURLEnabled = True
policyURLEnabled = True