22 lines
1.5 KiB
Python
22 lines
1.5 KiB
Python
|
# -*- mode: python; python-indent-offset: 4; tab-width: 0; encoding: utf-8-unix -*-
|
||
|
# This should be execed in config.py
|
||
|
|
||
|
# User agent to send. The following placeholders are defined: *
|
||
|
# `{os_info}`: Something like "X11; Linux x86_64". * `{webkit_version}`:
|
||
|
# The underlying WebKit version (set to a fixed value with
|
||
|
# QtWebEngine). * `{qt_key}`: "Qt" for QtWebKit, "QtWebEngine" for
|
||
|
# QtWebEngine. * `{qt_version}`: The underlying Qt version. *
|
||
|
# `{upstream_browser_key}`: "Version" for QtWebKit, "Chrome" for
|
||
|
# QtWebEngine. * `{upstream_browser_version}`: The corresponding
|
||
|
# Safari/Chrome version. * `{qutebrowser_version}`: The currently
|
||
|
# running qutebrowser version. The default value is equal to the
|
||
|
# unchanged user agent of QtWebKit/QtWebEngine. Note that the value
|
||
|
# read from JavaScript is always the global value. With QtWebEngine
|
||
|
# between 5.12 and 5.14 (inclusive), changing the value exposed to
|
||
|
# JavaScript requires a restart.
|
||
|
# Type: FormatString
|
||
|
config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}) AppleWebKit/{webkit_version} (KHTML, like Gecko) {upstream_browser_key}/{upstream_browser_version} Safari/{webkit_version}', 'https://web.whatsapp.com/')
|
||
|
config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}; rv:90.0) Gecko/20100101 Firefox/90.0', 'https://accounts.google.com/*')
|
||
|
config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99 Safari/537.36', 'https://*.slack.com/*')
|
||
|
|