Created
September 8, 2011 04:31
-
-
Save basyura/1202619 to your computer and use it in GitHub Desktop.
2ch sender
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 2chsend | |
// @namespace [email protected] | |
// @include http://2ch.xn--o9j0bk.gaasuu.com/entry/* | |
// ==/UserScript== | |
var a = document.evaluate("//div[@class='yui-g entry-full']/div/h2/a" , | |
document , | |
null , | |
XPathResult.FIRST_ORDERED_NODE_TYPE , | |
null).singleNodeValue; | |
window.location = a.href; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment