How to parse a list of domains in Qutebrowser
Introduction
This is a micro-guide to include a list of domains for per-domain options.
Steps
Create a file such as
domains_list.pyinside~/.config/qutebrowser/inside that file declare a list like this:
inside
config.pyadd at the beginning:from domains_list.py import listand then add this
forloop:for n in range(len(list)): config.set('content.cookies.accept', 'no-3rdparty', list[n])
list = ['*://*.example1.com/*', '*://example2.com/*']