Baidu x Stylish Fix

Restore Stylish styles from deletion on baidu.com

  1. // ==UserScript==
  2. // @name Baidu x Stylish Fix
  3. // @namespace https://gf.qytechs.cn/users/4
  4. // @description Restore Stylish styles from deletion on baidu.com
  5. // @version 1.1
  6. // @author LouCypher, modify by Maplerecall
  7. // @match *://www.baidu.com/*
  8. // @run-at document-end
  9. // ==/UserScript==
  10.  
  11. function addStyle(id, css) {
  12. var style = document.createElement("style");
  13. style.type = "text/css";
  14. style.id = id;
  15. style.textContent = css;
  16. document.head.appendChild(style);
  17. }
  18.  
  19. function checkForStylish() {
  20. return document.head.querySelectorAll('style[id^="stylish"]');
  21. }
  22.  
  23. var styles = checkForStylish();
  24. //console.log(styles.length);
  25. if (styles.length) {
  26. var stylish = [];
  27. for (var i = 0; i < styles.length; i++) {
  28. stylish[i] = {};
  29. stylish[i].id = styles[i].id;
  30. stylish[i].css = styles[i].textContent;
  31. }
  32. }
  33.  
  34. new (WebKitMutationObserver)(function(aMutations) {
  35. aMutations.forEach(function(aMutation) {
  36. if (aMutation.removedNodes.length)
  37. if (styles.length && !checkForStylish().length) {
  38. for (var i in stylish) {
  39. addStyle(stylish[i].id, stylish[i].css);
  40. }
  41. }
  42. });
  43. }).observe(document.head, {childList:true});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址