您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
2021/10/31 上午4:38:14
// ==UserScript== // @name 沒有下一集就調淡下一集連結的顏色 - anime1.me // @namespace Violentmonkey Scripts // @match https://anime1.me/* // @grant none // @version 1.2 // @author bigiCrab // @description 2021/10/31 上午4:38:14 // @license MIT // ==/UserScript== const thisPid = window.location.pathname.slice(1); const nextLink = document.querySelector("[id^=post-] > div.entry-content > p > a:nth-child(3)"); let nextUrl = new URL(nextLink.href); let nextPid = nextUrl.searchParams.get('p'); if(nextPid == ''){ nextLink.style.color='#888'; }