// ==UserScript== // @name 沒有下一集就調淡顏色 - anime1.me // @namespace Violentmonkey Scripts // @match https://anime1.me/* // @grant none // @version 1.0 // @author bigiCrab // @description 2021/10/31 上午4:38:14 // @downloadURL none // ==/UserScript== const thisPid = window.location.pathname.slice(1); const nextLink = document.querySelector(`#post-${thisPid} > div.entry-content > p:nth-child(2) > a:nth-child(3)`); let nextUrl = new URL(nextLink.href); let nextPid = nextUrl.searchParams.get('p'); if(nextPid == ''){ nextLink.style.color='#ddd'; }