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