Greasy Fork is available in English.
Apply CSS to specific content on a website
当前为
// ==UserScript==
// @name Ubiquiti QR code fix
// @namespace http://tampermonkey.net/
// @version 0.1
// @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==
// Don't forget to update the URL with your own dream machine gateway IP, under @match, above.
(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;
}
`);
})();