学习强国突出显示二维码

只留下二维码

// ==UserScript==
// @name         学习强国突出显示二维码
// @namespace    http://tampermonkey.net/
// @version      3.0
// @description  只留下二维码
// @author       yaorelax
// @match        https://pc.xuexi.cn/points/login.html*
// @icon         https://www.xuexi.cn/favicon.ico
// @require      https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.min.js
// @license      GPL-3.0 License
// @grant        GM_addStyle
// ==/UserScript==

(function () {
    $('audio').remove();
    GM_addStyle('.redflagbox, .layout-header, .layout-footer, .oath, .ddlogintext, .refresh {display: none !important;}');
    GM_addStyle('.layout-body{background-image:none !important;}');
})();