Created
January 29, 2012 08:18
-
-
Save wozozo/1697837 to your computer and use it in GitHub Desktop.
TSUTAYA DISCAS のレビュー全部開くやつ
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== | |
// @name TSUTAYA: Open all reviews. | |
// @namespace http://www.fujimotoyoichi.com/ | |
// @include http://www.discas.net/netdvd/dvd/* | |
// @author wozozo | |
// @charset UTF-8 | |
// @version 0.0.1 | |
// ==/UserScript== | |
(function() { | |
var reviewOpenButtons = document.querySelectorAll('.txtReviewOpen a'); | |
for(var i = 0; i < reviewOpenButtons.length; i++) { | |
reviewOpenButtons[i].onclick(); | |
} | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment