您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Forces visibility of download links (tab=files) on Nexus Mods
// ==UserScript== // @name Nexus Mod Download Enabler // @namespace https://nexusmods.com/ // @version 1.0 // @description Forces visibility of download links (tab=files) on Nexus Mods // @author You // @match https://www.nexusmods.com/* // @grant none // @run-at document-end // ==/UserScript== (function () { 'use strict'; // Select all <a> elements with "tab=files" in the href and force them visible [...document.querySelectorAll('a')] .filter(e => e.href.includes('tab=files')) .forEach(e => e.style = "display:block!important;"); })();