您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
from Rom list takes users straight to 'download' page (skipping the summary page altogether.)
当前为
// ==UserScript== // @name EmuParadise - Skip Rom Summary Page // @namespace https://github.com/Dr-Turner // @version 0.2 // @description from Rom list takes users straight to 'download' page (skipping the summary page altogether.) // @author Dave Turner // @match http://www.emuparadise.me/* // @grant none // ==/UserScript== (function() { 'use strict'; function addDownload(dict){ for (var i = 0; i < dict.length; i++){ dict[i].href += '-download'; } } // finds all links that lead to a rom page var links = document.querySelectorAll('td > a'); // appends them to go to the download page instead. Simple! :) addDownload(links); }();