Bighard Maker

将任意网站变成巨硬(Windows10)风格。

// ==UserScript==
// @name         Bighard Maker
// @namespace    http://yxzl.top/
// @version      1.3.0
// @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 unsafeWindow
// ==/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);
    if(window.location.href=='https://cn.bing.com/chrome/newtab' || window.location.href=='https://bing.com/chrome/newtab'){
        $("body").parent().css("overflow-y","hidden");
        $(".vs_cont").hide();
    };
    $(".b_hPanel").remove();
})();