Mercurial > ec-userscripts
view rakuten-books-direct-search.user.js @ 21:771359d863c2
(none)
author | Edho Arief <me@myconan.net> |
---|---|
date | Fri, 23 Oct 2015 07:28:23 +0000 |
parents | |
children | c4a091629ffb |
line wrap: on
line source
// ==UserScript== // @name rakuten books direct search // @namespace https://myconan.net // @version 0.1.0 // @description Search on rakuten without tracking proxy // @author nanaya // @match https://books.rakuten.co.jp/* // @match http://books.rakuten.co.jp/* // @grant none // @downloadURL https://bitbucket.org/!api/2.0/snippets/nanaya1/TK64/tip/files/mandarake-direct-link.user.js // ==/UserScript== ;(function() { var $ = jQuery; var $form = $("form[name='srchFrm']"); if (!$form.length) { return; } var searchUrl = $form.find("input[name='R2']").attr("value"); $form.attr("action", searchUrl); }).call();