✨去除身份信息和暂停图标

去除身份信息和暂停图标

// ==UserScript==
// @name         ✨去除身份信息和暂停图标
// @namespace    https://ayouth.xyz/
// @version      1.0.1
// @description  去除身份信息和暂停图标
// @author       icy
// @match        *://m.lizhiweike.com/*
// @grant        GM_registerMenuCommand
// @grant        GM_getValue
// @grant        GM_setValue
// @grant        GM_deleteValue
// @grant        unsafeWindow
// @run-at       document-body
// @license      MIT
// ==/UserScript==
setInterval(()=>{
document.getElementsByClassName('VideoPlay-status')[0].style.display = 'none' 
document.getElementsByClassName('copyRightHorse')[0].style.display = 'none'
document.getElementsByClassName('copy-right-text-wraper')[0].style.display = 'none'
},5000)