Greasy Fork

coco漫画去广告

233

目前为 2022-07-26 提交的版本。查看 最新版本

作者
MUTTERTOOLS
评分
0 0 0
版本
0.1
创建于
2022-07-26
更新于
2022-07-26
大小
479 字节
许可证
MIT
适用于

// ==UserScript==
// @name coco漫画去广告
// @namespace http://tampermonkey.net/
// @description 233
// @version 0.1
// @match https://www.cocomanga.com/*
// @grant none
// @license MIT
// ==/UserScript==

(function() {
'use strict';
setTimeout(()=>{
document.querySelectorAll('.website-pc-read-common').forEach(e => e.remove())
document.querySelector('#HMRichBox').remove()
document.querySelector("#HMimageright").remove()
document.querySelector("#HMimageleft").remove()
document.querySelector("#wrap-fixed").remove()
document.querySelector("#fixeddataother + div").remove()

},1000)

// Your code here...
})();