Created
October 6, 2015 19:41
-
-
Save konn/d2f8ee31a64094a02a13 to your computer and use it in GitHub Desktop.
Consequences of the Axiom of Choice Link Rewriter
This file contains 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 Consequences of the Axiom of Choice Link Rewriter | |
// @namespace http://your.homepage/ | |
// @version 0.1 | |
// @description Rewrite Con. AC project link | |
// @author Hiromi ISHII | |
// @match http://www.math.purdue.edu/~hrubin/* | |
// @require https://code.jquery.com/jquery-2.1.4.min.js | |
// @grant none | |
// ==/UserScript== | |
'use strict'; | |
$('body').ready(function(){ | |
$('a').each(function(){ | |
var hr = $(this).attr("href").replace("http://www.math.purdue.edu/~jer/", "http://www.math.purdue.edu/~hrubin/JeanRubin/"); | |
$(this).attr("href", hr); | |
}); | |
$('form').each(function(){ | |
var hr = $(this).attr("action").replace("http://www.math.purdue.edu/~jer/", "http://www.math.purdue.edu/~hrubin/JeanRubin/"); | |
$(this).attr("action", hr); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment