🏠 Home 

新版Canvas(2024.8)视频水印消除

#### the watermark


安装此脚本?
  1. // ==UserScript==
  2. // @name 新版Canvas(2024.8)视频水印消除
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-08-23
  5. // @description #### the watermark
  6. // @author Teruteru
  7. // @match https://v.sjtu.edu.cn/jy-application-canvas-sjtu-ui/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=sjtu.edu.cn
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13. const addGlobalStyle = (css) => {
  14. const style = document.createElement('style');
  15. style.appendChild(document.createTextNode(css));
  16. document.head.appendChild(style);
  17. return style;
  18. };
  19. addGlobalStyle("div#watermark-service-00001 {display: none !important; }");
  20. addGlobalStyle("div#watermark-service-00002 {display: none !important; }");
  21. })();