移除cn影视首页中的广告
// ==UserScript==
// @name 移除cn影院广告
// @namespace http://tampermonkey.net/
// @version 2024-03-28
// @description 移除cn影视首页中的广告
// @author You
// @match https://cnys.tv/*
// @match https://cnysapp.tv/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=cnys.tv
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll('.ec-ad').forEach((item)=>{item.style.display='none'})
// Your code here...
})();