屏蔽 www.hitxhot.org 随机广告 (CSS)
// ==UserScript==
// @name 屏蔽 www.hitxhot.org 随机广告 (CSS)
// @namespace http://tampermonkey.net/
// @version 0.0.1
// @description 使用 CSS 屏蔽 www.hitxhot.org 网站上的动态广告元素
// @author 你的名字
// @match *://www.hitxhot.org/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
// 使用 GM_addStyle 添加 CSS 规则
GM_addStyle(`
/* 隐藏 #随机字符串_video_container 元素 */
[id$="_video_container"] {
display: none !important;
}
/* 隐藏 #随机字符串_video_container > div.随机字符串_video_content_wrapper 元素 */
[id$="_video_container"] > [class$="_video_content_wrapper"] {
display: none !important;
}
/* 隐藏首页底部 */
div.exo_wrapper, video, iframe {
display: none !important;
}
`);
// https://www.hitxhot.org/gallerys/OThrOU5scG8yaDNNckkySFU1emtTdz09.html?page=1
})();