Mercurial > ec-userscripts
view rakuten-books-direct-search.user.js @ 29:d467e1e0ec98
(none)
author | Edho Arief <me@myconan.net> |
---|---|
date | Wed, 02 Dec 2015 12:27:51 +0000 |
parents | 2a4e34183b01 |
children | 28505554a8b9 |
line wrap: on
line source
// ==UserScript== // @name rakuten books direct search // @namespace https://myconan.net // @version 1.0.1 // @description Search on rakuten without tracking proxy // @author nanaya // @match https://books.rakuten.co.jp/* // @match http://books.rakuten.co.jp/* // @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/rakuten-books-direct-search.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();