// ==UserScript== // @name direct url for pixiv // @namespace namespace // @version 0.1 // @description description // @include http://www.pixiv.net/member.php?id=* // @copyright 2014+, q // @downloadURL none // ==/UserScript== $(function() { b = $(".profile-web > .td2 > a") b.attr("href", b.text()) a = $(".profile-twitter > .td2 > a") aa = a.attr("href").match(/\?(.*)/)[1] a.attr("href", aa) });