to zhangxinxu

致张鑫旭,我自己家雇个女仆帮我拆快递跟你有何相干?

当前为 2022-04-01 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name to zhangxinxu
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 致张鑫旭,我自己家雇个女仆帮我拆快递跟你有何相干?
  6. // @author You
  7. // @match https://www.zhangxinxu.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=zhangxinxu.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Your code here...
  17. const els = document.querySelector('body').children
  18. for(let i = 0; i < els.length; i++) {
  19. if(els[i].tagName.match(/.{4}-.{1}/)) {
  20. els[i].style.display = 'none'
  21. }
  22. }
  23. })();