Greasy Fork is available in English.
Apply CSS to specific content on a website
// ==UserScript==
// @name Ubiquiti Wireguard server QR code fix
// @namespace http://tampermonkey.net/
// @version 0.5
// @description Apply CSS to specific content on a website
// @author BerserkeR_031
// @match https://192.168.0.1/network/*/settings/vpn/server/form/*
// @grant GM_addStyle
// @icon https://www.ui.com/microsite/favicon.ico?v=2
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// Change CSS if it's no longer working, here.
GM_addStyle(`
:root canvas {
background-color: white !important;
}
`);
})();