// ==UserScript== // @name 知音漫客去除购买页面 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match *://*.zymk.cn/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.body.removeChild(document.getElementById('layui-layer-shade1')); document.body.removeChild(document.getElementById('layui-layer1')); // Your code here... })();