您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Blurs the covers of R-rated books at Kadokawa TW.
当前为
// ==UserScript== // @name Kadokawa TW: Blurs R-rated Covers // @name:zh-TW 台灣角川:模糊限制級封面 // @description Blurs the covers of R-rated books at Kadokawa TW. // @description:zh-TW 模糊台灣角川限制級書本的封面。 // @icon https://icons.duckduckgo.com/ip3/www.kadokawa.com.tw.ico // @author Jason Kwok // @namespace https://jasonhk.dev/ // @version 1.0.4 // @license MIT // @match https://www.kadokawa.com.tw/ // @match https://www.kadokawa.com.tw/search // @match https://www.kadokawa.com.tw/search?* // @match https://www.kadokawa.com.tw/collections/* // @run-at document-end // @grant none // @require https://update.gf.qytechs.cn/scripts/483122/1304475/style-shims.js // @supportURL https://gf.qytechs.cn/scripts/480474/feedback // ==/UserScript== GM.addStyle(` .productitem.nsfw img.productitem--image-primary { filter: blur(7.5px); transition: 0.3s; } .productitem.nsfw:hover img.productitem--image-primary, .productitem.nsfw:focus-within img.productitem--image-primary { filter: blur(0px); } `); const products = document.querySelectorAll(".productitem"); for (const product of products) { const badges = product.querySelector(".productitem--image > .productitem__badge").children; for (const badge of badges) { if (badge.innerText === "限制級") { product.classList.add("nsfw"); break; } } }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址