New YuDao

YuDao New Hook

  1. // ==UserScript==
  2. // @name New YuDao
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-10-12
  5. // @description YuDao New Hook
  6. // @author kkwafz
  7. // @match https://doc.iocoder.cn/*
  8. // @match https://cloud.iocoder.cn/*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=iocoder.cn
  10. // @grant none
  11. // @run-at document-end
  12. // @license MIT
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. function hookJquery(){
  17. if("$" in window){
  18. let o_html = window.$.fn.html;
  19. window.$.fn.html = function(text){
  20. if(text.includes("仅 VIP 可见!")){
  21. return this;
  22. }
  23. return o_html(text);
  24. }
  25. }else{
  26. setTimeout(hookJquery, 100);
  27. }
  28. }
  29.  
  30. function hookJqueryAlert(){
  31. if('jqueryAlert' in window){
  32. window.jqueryAlert = function(opts) {
  33. return {
  34. show: () => true,
  35. };
  36. }
  37. }else{
  38. setTimeout(hookJqueryAlert, 100);
  39. }
  40. }
  41. hookJquery();
  42. hookJqueryAlert();
  43. })();

QingJ © 2025

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