CN-w3cschool-免登录

w3cschool免登录脚本

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         CN-w3cschool-免登录
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  w3cschool免登录脚本
// @author       小明
// @match        https://www.w3cschool.cn/*
// @icon         https://7n.w3cschool.cn/statics/images/favicon.ico
// @grant        GM_addStyle
// @license      MIT
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';
GM_addStyle('.widget-main {display:none !important}');
GM_addStyle('#topbanner {display:none !important}');
GM_addStyle('#rfbanner {display:none !important}');
GM_addStyle('.abox-content {display:none !important}');
GM_addStyle('.hot-icon {display:none !important}');
GM_addStyle('.portlet-title {display:none !important}');
GM_addStyle('.kn-btn-group {opacity: 0.1 !important}');
GM_addStyle('.vip-area {display:none !important}');

GM_addStyle('#header {opacity: 0.4 !important}');

    // Your code here...
})();