Mercurial > ec-userscripts
view jiku-chu-direct-link.user.js @ 58:960d452dea99
Bump version to force updating to new repository
author | nanaya <me@nanaya.pro> |
---|---|
date | Thu, 23 Aug 2018 22:58:16 +0900 |
parents | 09f735548b2c |
children | 444b17e657be |
line wrap: on
line source
// ==UserScript== // @name Jiku-Chu direct link // @namespace https://myconan.net // @version 2.5.3 // @description Make proper link on Jiku-Chu pages // @author nanaya // @match http://www.jiku-chu.com/* // @match https://www.jiku-chu.com/* // @grant none // @downloadURL https://bitbucket.org/nanayapro/ec-userscripts/raw/tip/jiku-chu-direct-link.user.js // ==/UserScript== ;(function () { 'use strict'; const links = document.querySelectorAll("a[onclick^=\"age_verification_submit('/products/detail.php?product_id=\"]"); const removeOnClick = function (el) { const productId = el.getAttribute('onclick').replace(/.*product_id=(\d+).*/, '$1'); const url = `/products/detail.php?product_id=${productId}`; el.setAttribute('href', url); el.setAttribute('onclick', ''); }; Array.prototype.forEach.call(links, removeOnClick); }());