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