Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name emuparadise cache
- // @namespace Violentmonkey Scripts
- // @match *://www.emuparadise.me/*
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- function addDownload(dict){
- for (var i = 0; i < dict.length; i++){
- // dict[i].href += '-download'; //uncomment this line if you want to use it for games instead
- dict[i].href = 'http://webcache.googleusercontent.com/search?q=cache:' + dict[i].href;
- }
- }
- // finds all links that lead to a rom page
- var links = document.querySelectorAll('a.index');
- // appends them to go to the download page instead. Simple! :)
- addDownload(links);
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement