Greasy Fork

Bighard Maker

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

当前为 2023-04-22 提交的版本,查看 最新版本

// ==UserScript==
// @name         Bighard Maker
// @namespace    http://yxzl.top/
// @version      1.2.8
// @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);
    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();
    }
    if(window.location.hostname=='cn.bing.com' || window.location.hostname=='bing.com'){
        $(".b_vlist2col").remove();
        $("#ev_talkbox_wrapper").remove();
        $("#brsv3").remove();
        $(".b_msg").remove();
        $(".b_vidAns").remove();
        $("a").attr("target","_blank")
        for(let i = 0; i <= $(".b_algo:not(.b_topborder,.b_algoBorder)").length; i++){
            $(".b_algo:not(.b_topborder,.b_algoBorder)").eq(i).html($(".b_algo:not(.b_topborder,.b_algoBorder)").eq(i).find(".b_title").prop("outerHTML")+$(".b_algo:not(.b_topborder,.b_algoBorder)").eq(i).find(".b_topicon_container").find(".b_attribution").prop("outerHTML")+$(".b_algo:not(.b_topborder,.b_algoBorder)").eq(i).find(".b_caption").prop("outerHTML"))
        }
    }
})();