view jiku-chu-direct-link.user.js @ 79:e4b970501e8e

Missed the url fix
author nanaya <me@nanaya.pro>
date Thu, 06 Aug 2020 19:41:24 +0900
parents 5a3a269c5e6f
children 86da34e62d29
line wrap: on
line source

// ==UserScript==
// @name         Jiku-Chu direct link
// @namespace    https://myconan.net
// @version      2.5.5
// @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://hg.sr.ht/~nanaya/ec-userscripts/raw/jiku-chu-direct-link.user.js?rev=tip
// ==/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)
}())