Greasy Fork

Greasy Fork is available in English.

去除TAPD水印

去除tapd在页面中显示的用户名水印

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         去除TAPD水印
// @namespace    http://greasyfork.icu/zh-CN/users/306433
// @version      0.3
// @description  去除tapd在页面中显示的用户名水印
// @author       http://greasyfork.icu/zh-CN/users/306433-baster
// @supportURL   http://greasyfork.icu/zh-CN/users/306433-baster
// @homepageURL  http://greasyfork.icu/zh-CN/users/306433
// @match        https://www.tapd.cn/*
// @icon         https://www.tapd.cn/favicon.ico
// @license      GNU
// @grant        none
// ==/UserScript==

(function () {
    "use strict";

    var element = document.createElement("style");
    element.setAttribute("type", "text/css");
    document.head.appendChild(element);
    element.textContent = ".dontdeleteme-div-clear {background-size: 0px !important;} ";

    /* MutationObserver delete+change_style
        .dontdeleteme-div {
    		width: 100% !important;
    		height: 100% !important;
    		max-width: unset !important;
    		max-height: unset !important;
    		position: absolute !important;
    		top: 0 !important;
    		left: 0 !important;
    		padding: 0 !important;
    		margin: 0 !important;
    		z-index: 1001 !important;
    		pointer-events: none !important;
    		background-repeat: repeat !important;
    		background-image: url('data:image/svg+xml;base64,xxxx') !important;
    		opacity: 0.04 !important;
    		display: block !important;
    		visibility: visible !important;
    		clip: initial !important;
    		clip-path: initial !important;
    		transform: initial !important;
    	}
    	*/
})();