Copyleft

copyleft

目前為 2024-04-27 提交的版本,檢視 最新版本

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