🦅Long live president Camacho🦅

We're in 2515 and the USA president is Dwayne Elizondo Mountain Dew Herbert Camacho. The script corrects the american government sites that still show Trump as the current president with Camacho.

  1. // ==UserScript==
  2. // @name 🦅Long live president Camacho🦅
  3. // @namespace StephenP
  4. // @match https://www.whitehouse.gov/*
  5. // @match http://www.whitehouse.gov/*
  6. // @match https://*.gov/*
  7. // @match http://*.gov/*
  8. // @version 1.0
  9. // @author StephenP
  10. // @license MIT
  11. // @description We're in 2515 and the USA president is Dwayne Elizondo Mountain Dew Herbert Camacho. The script corrects the american government sites that still show Trump as the current president with Camacho.
  12. // ==/UserScript==
  13. /*
  14. Original script by JoinSummer (https://gf.qytechs.cn/users/907515-joinsummer)
  15. Original script page: https://gf.qytechs.cn/scripts/495283
  16. */
  17. (function() {
  18. 'use strict';
  19.  
  20. const replacements = new Map([
  21. ['Donald Trump', 'Dwayne Camacho'],
  22. ['Donald J. Trump', 'Dwayne Elizondo Mountain Dew Herbert Camacho'],
  23. ['Trump', 'Camacho'],
  24. ]);
  25.  
  26.  
  27. function replaceText(node) {
  28. console.log(node.nodeType,node.nodeValue)
  29. if (node.nodeType === Node.TEXT_NODE) {
  30. let text = node.nodeValue;
  31. replacements.forEach((value, key) => {
  32. const regex = new RegExp(key, 'g');
  33. text = text.replace(regex, value);
  34. });
  35. node.nodeValue = text;
  36. } else {
  37. node.childNodes.forEach(replaceText);
  38. }
  39. }
  40.  
  41. replaceText(document.body);
  42.  
  43. const observer = new MutationObserver(mutations => {
  44. mutations.forEach(mutation => {
  45. mutation.addedNodes.forEach(node => {
  46. replaceText(node);
  47. });
  48. });
  49. });
  50.  
  51. observer.observe(document.body, {
  52. childList: true,
  53. subtree: true
  54. });
  55. })();
  56.  

QingJ © 2025

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