Greasy Fork镜像 支持简体中文。

去除 gitee 水印

2023/11/16 16:39:37

目前為 2023-11-16 提交的版本,檢視 最新版本

// ==UserScript==
// @name        去除 gitee 水印
// @namespace   Violentmonkey Scripts
// @match       https://*.gitee.com/*
// @grant       none
// @version     1.0
// @author      bin_tenkuu
// @description 2023/11/16 16:39:37
// @license     MIT
// ==/UserScript==


// 在此处执行需要在页面加载完成后执行的代码
!(function removeIcon(){
  let a = document.getElementById('wm-style');
  if (a != null) {
    a.innerHTML = '';
  }
  setTimeout(removeIcon, 2000)
})();

QingJ © 2025

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