代码拉取完成,页面将自动刷新
// ==UserScript==
// @name 漫画小助手
// @namespace http://tampermonkey.net/
// @version 2024-06-20
// @description 漫画小助手,帮你看漫画
// @author You
// @match *://*/*/*/read*
// @grant none
// ==/UserScript==
(function() {
'use strict'
//使用MutationObserver观察器监测document变化
// 目标节点
const targetNode = document.getElementsByClassName('to-recharge-win'),
body = document.getElementsByTagName('body');
// 观察器的配置(需要观察什么变动)
const config = { attributes: true, };
// 当观察到变动时执行的回调函数
const callback = function(mutationsList, observer) {
for(let mutation of mutationsList) {
if (mutation.type === 'childList') {
console.log('A child node has been added or removed.');
} else if (mutation.type === 'attributes') {
console.log('The ' + mutation.attributeName + ' attribute was modified.');
//工具代码
work();
}
}
};
// 创建一个观察器实例并传入回调函数
const observer = new MutationObserver(callback);
// 开始观察目标节点
observer.observe(targetNode[0], config);
//work code
const work = function(){
observer.disconnect();
targetNode[0].setAttribute('data-vip','false');
body[0].style.cssText='';
observer.observe(targetNode[0], config);
}
// 以后,你可以停止观察
// observer.disconnect();
})();
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。