Skip to content

Instantly share code, notes, and snippets.

@basyura
Created November 6, 2011 12:04
Show Gist options
  • Save basyura/1342790 to your computer and use it in GitHub Desktop.
Save basyura/1342790 to your computer and use it in GitHub Desktop.
yahoo redirector
// ==UserScript==
// @name yahoo news redirector
// @namespace [email protected]
// @include http://dailynews.yahoo.co.jp/*
// ==/UserScript==
(function () {
var h3 = document.getElementsByTagName("h3")[0];
var url = h3.childNodes[0].getAttribute("href");
location.href = url;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment