您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
用于删除飞卢小说网页端阅读页面的图片
当前为
// ==UserScript== // @name 飞卢小说图片去除 // @name:en Faloo Picture Remover // @description 用于删除飞卢小说网页端阅读页面的图片 // @description:en Used to delete images from the webpage reading page of faloo novel // @version 0.0.1 // @author Confringo // @match *://b.faloo.com/*_*.html // @match *://wap.faloo.com/*_*.html // @license AGPL-3.0-or-later // @namespace http://greasyfork.icu/users/960765 // ==/UserScript== (function() { 'use strict'; try{ let e = document.evaluate("/html/body/section/div[1]/div[3]/div[1]/a/img", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null); e.singleNodeValue.remove(); } catch(k){ console.log("Script for wap.faloo.com ran into an error. Text will show below:"); console.log(k.message); } try{ let f = document.evaluate("/html/body/div[6]/div/div[1]/div[6]/a/img", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null); f.singleNodeValue.remove(); } catch(k){ console.log("Script for b.faloo.com ran into an error. Text will show below:"); console.log(k.message); } })();