// ==UserScript== // @name Ubiquiti QR code fix // @namespace http://tampermonkey.net/ // @version 0.2 // @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 // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Change CSS if it's no longer working, here. GM_addStyle(` .content__gmtGCcmz.content-dark__gmtGCcmz.content-noHeader__gmtGCcmz.content-noFooter__gmtGCcmz { background-color: white !important; } `); })();