您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
隐藏淘宝后台店铺水印,包含退款页面,申诉页面,生意参谋
// ==UserScript== // @name 隐藏生意参谋淘宝后台水印 // @namespace http://tampermonkey.net/ // @version 0.0.1 // @description 隐藏淘宝后台店铺水印,包含退款页面,申诉页面,生意参谋 // @author yuensui // @match https://sycm.taobao.com/* // @match https://myseller.taobao.com/home.htm/* // @icon https://www.google.com/s2/favicons?sz=64&domain=taobao.com // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... // 隐藏退款页面水印 var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = 'watermark-container { visibility: hidden !important;}'; document.getElementsByTagName('head')[0].appendChild(style); // 隐藏申诉页面水印 var theHead = document.head || document.getElementsByTagName('head')[0]; 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}')); theHead.appendChild(style); //隐藏生意参谋页面水印 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}')); theHead.appendChild(style); })();