SJTU去水印

去水印

// ==UserScript==
// @name         SJTU去水印
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  去水印
// @match        https://feedback.sjtu.edu.cn/**
// @match        https://my.sjtu.edu.cn/ai/ui/chat/**
// @match        https://mobile.weixiao.ct-study.com.cn/**
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
  'use strict';
  const style = document.createElement('style');
  style.innerHTML = `
  div[style*="data:image/png"] {
    transform: scale(0) !important;
    pointer-events: none !important;
  }`;
  document.head.appendChild(style);
})();