隐藏生意参谋淘宝后台水印

隐藏淘宝后台店铺水印,包含退款页面,申诉页面,生意参谋

  1. // ==UserScript==
  2. // @name 隐藏生意参谋淘宝后台水印
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.0.1
  5. // @description 隐藏淘宝后台店铺水印,包含退款页面,申诉页面,生意参谋
  6. // @author yuensui
  7. // @match https://sycm.taobao.com/*
  8. // @match https://myseller.taobao.com/home.htm/*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=taobao.com
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Your code here...
  17. // 隐藏退款页面水印
  18. var style = document.createElement('style');
  19. style.type = 'text/css';
  20. style.innerHTML = 'watermark-container { visibility: hidden !important;}';
  21. document.getElementsByTagName('head')[0].appendChild(style);
  22. // 隐藏申诉页面水印
  23. var theHead = document.head || document.getElementsByTagName('head')[0];
  24. style.appendChild(document.createTextNode('#water-marker-container{background-image:none !important;background-attachment:scroll;background-position-x:0;background-position-y:0;background-repeat:repeat;color:transparent;background-clip:text}'));
  25. theHead.appendChild(style);
  26. //隐藏生意参谋页面水印
  27. style.appendChild(document.createTextNode('#yd-watermark-gs7o69{background-image:none !important;background-attachment:scroll;background-position-x:0;background-position-y:0;background-repeat:repeat;color:transparent;background-clip:text}'));
  28. theHead.appendChild(style);
  29. })();

QingJ © 2025

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