Greasy Fork 还支持 简体中文。

EmuParadise - Skip Rom Summary Page

from Rom list takes users straight to 'download' page (skipping the summary page altogether.)

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

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