Mercurial > ec-userscripts
view rakuten-books-direct-search.user.js @ 124:6d280338e113
Apparently both are required? or recommended
author | nanaya <me@nanaya.net> |
---|---|
date | Sat, 21 Jan 2023 02:08:29 +0900 |
parents | 8de2d53a4cb1 |
children |
line wrap: on
line source
// ==UserScript== // @name rakuten books direct search // @namespace https://nanaya.net // @version 1.0.6 // @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://hg.nanaya.net/ec-userscripts/raw-file/tip/rakuten-books-direct-search.user.js // ==/UserScript== 'use strict'; /* global jQuery */ const $ = jQuery; const $form = $("form[name='srchFrm']"); if ($form.length > 0) { const searchUrl = $form.find("input[name='R2']").attr('value'); $form.attr('action', searchUrl); }