Skip to content

Instantly share code, notes, and snippets.

@konn
Created October 6, 2015 19:41
Show Gist options
  • Save konn/d2f8ee31a64094a02a13 to your computer and use it in GitHub Desktop.
Save konn/d2f8ee31a64094a02a13 to your computer and use it in GitHub Desktop.
Consequences of the Axiom of Choice Link Rewriter
// ==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