Mercurial > ec-userscripts
annotate jiku-chu-direct-link.user.js @ 66:444b17e657be
Standardize code style
author | nanaya <me@nanaya.pro> |
---|---|
date | Wed, 10 Jul 2019 22:36:31 +0900 |
parents | 960d452dea99 |
children | 521dda0a0b6f |
rev | line source |
---|---|
14 | 1 // ==UserScript== |
2 // @name Jiku-Chu direct link | |
3 // @namespace https://myconan.net | |
58
960d452dea99
Bump version to force updating to new repository
nanaya <me@nanaya.pro>
parents:
57
diff
changeset
|
4 // @version 2.5.3 |
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 |
57 | 10 // @downloadURL https://bitbucket.org/nanayapro/ec-userscripts/raw/tip/jiku-chu-direct-link.user.js |
14 | 11 // ==/UserScript== |
12 | |
50 | 13 ;(function () { |
66 | 14 'use strict' |
15 const links = document.querySelectorAll("a[onclick^=\"age_verification_submit('/products/detail.php?product_id=\"]") | |
50 | 16 const removeOnClick = function (el) { |
66 | 17 const productId = el.getAttribute('onclick').replace(/.*product_id=(\d+).*/, '$1') |
18 const url = `/products/detail.php?product_id=${productId}` | |
33 | 19 |
66 | 20 el.setAttribute('href', url) |
21 el.setAttribute('onclick', '') | |
22 } | |
33 | 23 |
66 | 24 Array.prototype.forEach.call(links, removeOnClick) |
25 }()) |