commit 53cc700748c4a8837e9632d52b7d1817232ab6e6
parent bcaad22c170c0a5e4dc417350028b27d6ddcd5cb
Author: NunoSempere <nuno.sempere@protonmail.com>
Date: Wed, 15 Feb 2023 20:34:17 +0100
tweak: add custom user agent.
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/rose.c b/rose.c
@@ -24,6 +24,7 @@
int LIBRE_REDIRECT_ENABLED = true;
int READABILITY_ENABLED = true;
int CUSTOM_STYLE_ENABLED = true;
+int CUSTOM_USER_AGENT = true;
// to enable plugins,
// 1. Enable them:
@@ -63,6 +64,10 @@ WebKitWebView *webview_new()
WebKitUserContentManager *contentmanager;
settings = webkit_settings_new_with_settings(WEBKIT, NULL);
+ if(CUSTOM_USER_AGENT){
+ webkit_settings_set_user_agent (settings, "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36");
+ // See: <https://www.useragents.me/> for some common user agents
+ }
web_context = webkit_web_context_new_with_website_data_manager(
webkit_website_data_manager_new(CACHE, NULL));
contentmanager = webkit_user_content_manager_new();