Mercurial > ec-userscripts
view mandarake-direct-link.user.js @ 33:28505554a8b9
(none)
author | Edho Arief <me@myconan.net> |
---|---|
date | Sun, 25 Dec 2016 07:41:17 +0000 |
parents | 0552100cceb3 |
children | 32a213717e6a |
line wrap: on
line source
// ==UserScript== // @name mandarake direct link // @namespace https://myconan.net // @version 1.2.2 // @description Make proper link on mandarake pages // @author nanaya // @match https://order.mandarake.co.jp/* // @match http://order.mandarake.co.jp/* // @grant none // @downloadURL https://bitbucket.org/!api/2.0/snippets/nanaya1/TK64/tip/files/mandarake-direct-link.user.js // ==/UserScript== ;(function() { "use strict"; $(".r18mark").remove() var fixLink = function(_i, el) { var $el = $(el) var url = "/order/detailPage/item?itemCode=" + $el.attr("id") + "&ref=list" $el.attr("href", url) $el.removeClass() } $("[href^='#adult_confirm']").each(fixLink) }).call();