nixos-config/users/simon/modules/qutebrowser/userscripts/per-domain-userstyles.user.js
Simon Bruder 821367af3f
qutebrowser: Init
This also makes it the default browser.
2021-11-09 21:45:50 +01:00

17 lines
460 B
JavaScript

// ==UserScript==
// @name Per-Domain Userstyles
// @include *
// @run-at document-start
// @author Original by Olmo Kramer
// ==/UserScript==
(() => {
document.addEventListener("readystatechange", () => {
if (document.readyState == "interactive") {
const doc = document.documentElement
doc.setAttribute("data-qb-url", window.location.href)
doc.setAttribute("data-qb-domain", window.location.host)
}
})
})()