aboutsummaryrefslogtreecommitdiff
path: root/config/qutebrowser/greasemonkey/duckduckgo.js
diff options
context:
space:
mode:
Diffstat (limited to 'config/qutebrowser/greasemonkey/duckduckgo.js')
-rw-r--r--config/qutebrowser/greasemonkey/duckduckgo.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/config/qutebrowser/greasemonkey/duckduckgo.js b/config/qutebrowser/greasemonkey/duckduckgo.js
new file mode 100644
index 0000000..f1c9247
--- /dev/null
+++ b/config/qutebrowser/greasemonkey/duckduckgo.js
@@ -0,0 +1,16 @@
+// ==UserScript==
+// @name Github PR helper
+// @namespace phenax.github.io
+// @version 0.0.0
+// @description Github PR helper
+// @author Akshay Nair
+// @match *://duckduckgo.com/*
+// ==/UserScript==
+
+(() => {
+ const load = str =>
+ str.split(' ').forEach(x => (document.cookie = x));
+
+ load('ae=d; 5=2; s=m; p=-2; am=osm; a=JetBrains%20Mono; t=JetBrains%20Mono; j=0f0c19; 7=15121f; 21=1f1c29;')
+})();
+