沒有下一集就調淡下一集連結的顏色 - anime1.me

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';
}