Copyleft

copyleft

当前为 2024-04-27 提交的版本,查看 最新版本

// ==UserScript==
// @name        Copyleft
// @namespace   Violentmonkey Scripts
// @match       https://yopu.co/*
// @grant       none
// @version     1.0
// @author      Byaidu
// @description copyleft
// @license     GNU General Public License v3.0 or later
// ==/UserScript==
(function() {
    setTimeout(()=>{
        Array.from(document.getElementsByClassName('copyright')).forEach((x)=>{x.classList.remove('copyright');});
    },1000);
})();