Created
June 18, 2016 14:50
-
-
Save vaginessa/b5ed2b95459983222924df1a562e9bee to your computer and use it in GitHub Desktop.
Sourceforgeddl.user.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== // @name Direct links on Sourceforge download pages // @namespace http://www.amdmi3.ru/ // @copyright 2009-2011, Dmitry Marakasov <[email protected]> // @license BSD // @include http://sourceforge.net/projects/* // @include http://www.sourceforge.net/projects/* // @include https://sourceforge.net/projects/* // @include https://www.sourceforge.net/projects/* // ==/UserScript== (function() { // !!! Change this to your favorite mirror !!! var mirror = "kent"; for(var i = 0; i < document.links.length; i++) { var elem = document.links[i]; if (elem.href.match(/\/projects\/([^\/]+)\/files\/(.+)\/download/i)) { elem.href="http://"+mirror+".dl.sourceforge.net/project/"+RegExp.$1+"/"+RegExp.$2; } } })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment