Skip to content

Instantly share code, notes, and snippets.

@wozozo
Created January 29, 2012 08:18
Show Gist options
  • Save wozozo/1697837 to your computer and use it in GitHub Desktop.
Save wozozo/1697837 to your computer and use it in GitHub Desktop.
TSUTAYA DISCAS のレビュー全部開くやつ
// ==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