Bighard Maker

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

  1. // ==UserScript==
  2. // @name Bighard Maker
  3. // @namespace http://yxzl.top/
  4. // @version 1.3.0
  5. // @description 将任意网站变成巨硬(Windows10)风格。
  6. // @author Iron_Grey_
  7. // @require https://lf26-cdn-tos.bytecdntp.com/cdn/expire-1-M/jquery/3.2.1/jquery.min.js
  8. // @match *://*/*
  9. // @grant unsafeWindow
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 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>";
  14. $("body").append(val);
  15. if(window.location.href=='https://cn.bing.com/chrome/newtab' || window.location.href=='https://bing.com/chrome/newtab'){
  16. $("body").parent().css("overflow-y","hidden");
  17. $(".vs_cont").hide();
  18. };
  19. $(".b_hPanel").remove();
  20. })();