// ==UserScript==
// @name           pya! 18+ Confirm Automatic
// @namespace      http://www.akiyan.com/cc_greasemonkey
// @description    pya! 18+ Confirm Automatic
// @include        http://pya.cc/pyaimg/han.php*
// ==/UserScript==


(function() {

    var anchors = document.getElementsByTagName('a');
    for (var i = 0; i < anchors.length; i++) {
        if (anchors[i].href.match(/spimg\.php/)) {
            location.href = anchors[i].href;
        }
    }

})();
