您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Improve the UX of ESJ Zone by tweaking the hyperlinks in the pages.
当前为
- // ==UserScript==
- // @name Better Links UX for ESJ Zone
- // @name:zh-TW ESJ Zone:更好的連結體驗
- // @description Improve the UX of ESJ Zone by tweaking the hyperlinks in the pages.
- // @description:zh-TW 透過調整 ESJ Zone 的超連結來改善使用體驗。
- // @author Jason Kwok
- // @namespace https://jasonhk.dev/
- // @version 1.0.0
- // @license MIT
- // @match https://www.esjzone.cc/detail/*
- // @run-at document-end
- // @grant none
- // ==/UserScript==
- const chapters = document.querySelectorAll("#chapterList > a");
- for (const chapter of chapters)
- {
- chapter.target = "_self";
- }