Site specific settings.

This commit is contained in:
CronyAkatsuki 2023-11-06 13:53:27 +01:00
parent 4a5b650d01
commit 22a3f4d4b7

View File

@ -54,3 +54,31 @@ c.content.private_browsing = False
c.completion.web_history.max_items = 0 c.completion.web_history.max_items = 0
c.completion.cmd_history_max_items = 0 c.completion.cmd_history_max_items = 0
##-- Devtool Settings --##
with config.pattern("chrome-devtools://*") as s:
s.content.cookies.accept = "all"
s.content.images = True
s.content.javascript.enabled = True
with config.pattern("devtools://*") as s:
s.content.cookies.accept = "all"
s.content.images = True
s.content.javascript.enabled = True
with config.pattern("chrome://*/*") as s:
s.content.javascript.enabled = True
with config.pattern("qute://*/*") as s:
s.content.javascript.enabled = True
##-- Site settings --##
with config.pattern("https://searx.cronyakatsuki.xyz/*") as s:
s.content.cookies.accept = "all"
with config.pattern("https://monkeytype.com") as s:
s.content.javascript.enabled = True
s.content.cookies.accept = "all"
with config.pattern("https://piped.cronyakatsuki.xyz/*") as s:
s.content.javascript.enabled = True
s.content.cookies.accept = "all"