21
|
1 // ==UserScript==
|
|
2 // @name rakuten books direct search
|
|
3 // @namespace https://myconan.net
|
82
|
4 // @version 1.0.6
|
21
|
5 // @description Search on rakuten without tracking proxy
|
|
6 // @author nanaya
|
|
7 // @match https://books.rakuten.co.jp/*
|
|
8 // @match http://books.rakuten.co.jp/*
|
29
|
9 // @match https://*.books.rakuten.co.jp/*
|
|
10 // @match http://*.books.rakuten.co.jp/*
|
21
|
11 // @grant none
|
82
|
12 // @downloadURL https://hg.myconan.net/ec-userscripts/raw-file/tip/rakuten-books-direct-search.user.js
|
21
|
13 // ==/UserScript==
|
|
14
|
66
|
15 /* global jQuery */
|
|
16 ;(function () {
|
|
17 'use strict'
|
33
|
18
|
66
|
19 var $ = jQuery
|
|
20 var $form = $("form[name='srchFrm']")
|
59
|
21
|
66
|
22 if (!$form.length) { return }
|
|
23
|
|
24 var searchUrl = $form.find("input[name='R2']").attr('value')
|
|
25 $form.attr('action', searchUrl)
|
|
26 }).call()
|