Created
July 19, 2011 08:47
-
-
Save ohnishiakira/1091752 to your computer and use it in GitHub Desktop.
togetterの"続きを読む"を自動でクリック
This file contains hidden or 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== | |
// @match http://togetter.com/li/* | |
// ==/UserScript== | |
(function (element) { | |
if (element !== null) { | |
var event = document.createEvent("MouseEvents"); | |
event.initEvent("click", false, true); | |
element.dispatchEvent(event); | |
} | |
})(document.querySelector("a[onclick^='tgtr.more']")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Togetter.com の仕様が変わったのか動かなくなってたので直した。