Mercurial > ec-userscripts
diff jiku-chu-direct-link.user.js @ 109:ef21ef445fc6
Cleanups
- wrap everything in function and call them last
- fix namespace and update url
author | nanaya <me@nanaya.net> |
---|---|
date | Sun, 15 Jan 2023 23:33:41 +0900 |
parents | 2c4470b73ad9 |
children | d9dc190bccaf |
line wrap: on
line diff
--- a/jiku-chu-direct-link.user.js Sun Jan 15 23:24:03 2023 +0900 +++ b/jiku-chu-direct-link.user.js Sun Jan 15 23:33:41 2023 +0900 @@ -1,17 +1,18 @@ // ==UserScript== // @name Jiku-Chu direct link -// @namespace https://myconan.net +// @namespace https://nanaya.net // @version 2.5.6 // @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.myconan.net/ec-userscripts/raw-file/tip/jiku-chu-direct-link.user.js +// @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/jiku-chu-direct-link.user.js // ==/UserScript== -(function () { - 'use strict'; +'use strict'; + +function directLink () { 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'); @@ -22,4 +23,6 @@ }; Array.prototype.forEach.call(links, removeOnClick); -}()); +} + +directLink();