14
|
1 // ==UserScript==
|
|
2 // @name Jiku-Chu direct link
|
|
3 // @namespace https://myconan.net
|
15
|
4 // @version 2.4
|
14
|
5 // @description Make proper link on Jiku-Chu pages
|
|
6 // @author nanaya
|
|
7 // @match http://www.jiku-chu.com/*
|
|
8 // @grant none
|
15
|
9 // @downloadURL https://bitbucket.org/!api/2.0/snippets/nanaya1/TK64/tip/files/jiku-chu-direct-link.user.js
|
14
|
10 // ==/UserScript==
|
|
11
|
|
12 ;(function() {
|
|
13 Array.prototype.forEach.call(
|
|
14 document.querySelectorAll("a[onclick^=\"age_verification_submit('/products/detail.php?product_id=\"]"),
|
|
15 function(el) {
|
|
16 var
|
|
17 productId = el.getAttribute("onclick").replace(/.*product_id=(\d+).*/, "$1"),
|
|
18 url = "/products/detail.php?product_id=" + productId;
|
|
19 el.setAttribute("href", url);
|
|
20 el.setAttribute("onclick", "");
|
|
21 }
|
|
22 )
|
|
23 }).call(); |