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