Greasy Fork

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

2021/10/31 上午4:38:14

目前为 2021-10-30 提交的版本。查看 最新版本

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