您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Changes links on the unassigned fandom page to go to the All Characters bin directly
当前为
// ==UserScript== // @name AO3: [Wrangling] Direct Links on Unassigned Fandoms Page // @description Changes links on the unassigned fandom page to go to the All Characters bin directly // @version 1 // @author Ebonwing // @grant none // @license GPL-3.0 <https://www.gnu.org/licenses/gpl.html> // @match *://*.archiveofourown.org/fandoms/unassigned* // @namespace https://greasyfork.org/users/819864 // ==/UserScript== var list = document.getElementsByClassName("fandoms index group"); Array.from(list[0].children).forEach(function (el){ el.firstElementChild.href +="/wrangle?show=characters"; });