qutebrowser: Updated host blocking options to v2
qutebrowser 2.0 changed the option names for host blocking, and this update simply fixes that change accordingly. See your qute://help/changelog.html#v2.0.0 file.
This commit is contained in:
parent
5973de3425
commit
1b27c2eac5
1 changed files with 4 additions and 3 deletions
|
@ -14,15 +14,15 @@ config.load_autoconfig()
|
||||||
c.completion.web_history.max_items = 1000
|
c.completion.web_history.max_items = 1000
|
||||||
c.hints.uppercase = True
|
c.hints.uppercase = True
|
||||||
|
|
||||||
c.content.host_blocking.enabled = True
|
c.content.blocking.enabled = True
|
||||||
c.content.host_blocking.lists = [
|
c.content.blocking.hosts.lists = [
|
||||||
"http://www.malwaredomainlist.com/hostslist/hosts.txt",
|
"http://www.malwaredomainlist.com/hostslist/hosts.txt",
|
||||||
"http://someonewhocares.org/hosts/hosts",
|
"http://someonewhocares.org/hosts/hosts",
|
||||||
"http://winhelp2002.mvps.org/hosts.zip",
|
"http://winhelp2002.mvps.org/hosts.zip",
|
||||||
"http://malwaredomains.lehigh.edu/files/justdomains.zip",
|
"http://malwaredomains.lehigh.edu/files/justdomains.zip",
|
||||||
"http://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&mimetype=plaintext",
|
"http://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&mimetype=plaintext",
|
||||||
]
|
]
|
||||||
c.content.host_blocking.whitelist = ["piwik.org"]
|
c.content.blocking.whitelist = ["piwik.org"]
|
||||||
|
|
||||||
c.content.autoplay = False
|
c.content.autoplay = False
|
||||||
c.content.pdfjs = False
|
c.content.pdfjs = False
|
||||||
|
@ -174,4 +174,5 @@ c.url.searchengines = {
|
||||||
"sci": "https://sci-hub.se/{}",
|
"sci": "https://sci-hub.se/{}",
|
||||||
"kb": "https://soeg.kb.dk/discovery/search?query=any,contains,{}&tab=Everything&search_scope=MyInst_and_CI&vid=45KBDK_KGL:KGL&offset=0&lang=en",
|
"kb": "https://soeg.kb.dk/discovery/search?query=any,contains,{}&tab=Everything&search_scope=MyInst_and_CI&vid=45KBDK_KGL:KGL&offset=0&lang=en",
|
||||||
"alt": "https://alternativeto.net/software/{}/?license=opensource",
|
"alt": "https://alternativeto.net/software/{}/?license=opensource",
|
||||||
|
"hn": "https://hn.algolia.com/?q={}",
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue