将任意网站变成巨硬(Windows10)风格。
当前为
// ==UserScript==
// @name Bighard Maker
// @namespace http://yxzl.top/
// @version 1.2.5
// @description 将任意网站变成巨硬(Windows10)风格。
// @author Iron_Grey_
// @require https://lf26-cdn-tos.bytecdntp.com/cdn/expire-1-M/jquery/3.2.1/jquery.min.js
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
var val = "<style type='text/css'>*{border-radius:0px !important;border-bottom-left-radius:0px !important;border-bottom-right-radius:0px !important;border-top-right-radius:0px !important;border-top-left-radius:0px !important;}*::after{border-radius:0px !important;border-bottom-left-radius:0px !important;border-bottom-right-radius:0px !important;border-top-right-radius:0px !important;border-top-left-radius:0px !important;}*::before{border-radius:0px !important;border-bottom-left-radius:0px !important;border-bottom-right-radius:0px !important;border-top-right-radius:0px !important;border-top-left-radius:0px !important;}*.change{border-radius:0px !important;border-bottom-left-radius:0px !important;border-bottom-right-radius:0px !important;border-top-right-radius:0px !important;border-top-left-radius:0px !important;}*.change::after{border-radius:0px !important;border-bottom-left-radius:0px !important;border-bottom-right-radius:0px !important;border-top-right-radius:0px !important;border-top-left-radius:0px !important;}*.chage::before{border-radius:0px !important;border-bottom-left-radius:0px !important;border-bottom-right-radius:0px !important;border-top-right-radius:0px !important;border-top-left-radius:0px !important;}</style>";
$("body").append(val);$(".vs_cont").hide();
})();