Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mrw34
Created July 12, 2013 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrw34/5986860 to your computer and use it in GitHub Desktop.
Save mrw34/5986860 to your computer and use it in GitHub Desktop.
Userscript to replace iCal downloads on traintimes.org.uk with links to Google Calendar's event creation page
// ==UserScript==
// @match http://traintimes.org.uk/*
// ==/UserScript==
(function() {
var icals = document.getElementsByClassName("ical");
for (var i = 0; i < icals.length; i++) {
icals[i].href = 'http://markwoodbridge.appspot.com/ical?url=' + encodeURIComponent(icals[i].href);
}
})();
@mrw34
Copy link
Author

mrw34 commented Jul 18, 2013

For Chome and Firefox installation instructions see http://userscripts.org/about/installing

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment