您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Pixivの閲覧済み画像のサムネイルに枠をつけて強調します
当前为
// ==UserScript== // @name Pixiv visited customizer // @namespace https://javelin.works/ // @version 0.0.3 // @description Pixivの閲覧済み画像のサムネイルに枠をつけて強調します // @author sanadan <[email protected]> // @match https://www.pixiv.net/* // @license MIT // @grant none // ==/UserScript== (function () { 'use strict' document.head.insertAdjacentHTML('beforeend', ` <style> a.gtm-followlatestpage-thumbnail-link > div:nth-child(1), a.gtm-toppage-thumbnail-illustration-following > div:nth-child(1), a.gtm-toppage-thumbnail-illustration-recommend-works > div:nth-child(1), a.gtm-toppage-thumbnail-illustration-recommend-tag > div:nth-child(1), a.gtm-toppage-thumbnail-illustration-everyone > div:nth-child(1), a.gtm-illust-recommend-thumbnail-link > div:nth-child(1) { box-sizing: border-box; border: 2px solid white; border-radius: 8px; background-clip: padding-box; } a.gtm-followlatestpage-thumbnail-link:visited > div:nth-child(1), a.gtm-toppage-thumbnail-illustration-following:visited > div:nth-child(1), a.gtm-toppage-thumbnail-illustration-recommend-works:visited > div:nth-child(1), a.gtm-toppage-thumbnail-illustration-recommend-tag:visited > div:nth-child(1), a.gtm-toppage-thumbnail-illustration-everyone:visited > div:nth-child(1), a.gtm-illust-recommend-thumbnail-link:visited > div:nth-child(1) { border-color: purple; } </style> `) })()