Mercurial > ec-userscripts
diff rakuten-books-direct-search.user.js @ 109:ef21ef445fc6
Cleanups
- wrap everything in function and call them last
- fix namespace and update url
author | nanaya <me@nanaya.net> |
---|---|
date | Sun, 15 Jan 2023 23:33:41 +0900 |
parents | 2c4470b73ad9 |
children | d9dc190bccaf |
line wrap: on
line diff
--- a/rakuten-books-direct-search.user.js Sun Jan 15 23:24:03 2023 +0900 +++ b/rakuten-books-direct-search.user.js Sun Jan 15 23:33:41 2023 +0900 @@ -1,6 +1,6 @@ // ==UserScript== // @name rakuten books direct search -// @namespace https://myconan.net +// @namespace https://nanaya.net // @version 1.0.6 // @description Search on rakuten without tracking proxy // @author nanaya @@ -9,13 +9,13 @@ // @match https://*.books.rakuten.co.jp/* // @match http://*.books.rakuten.co.jp/* // @grant none -// @downloadURL https://hg.myconan.net/ec-userscripts/raw-file/tip/rakuten-books-direct-search.user.js +// @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/rakuten-books-direct-search.user.js // ==/UserScript== +'use strict'; + /* global jQuery */ -(function () { - 'use strict'; - +function noTrackSearch () { const $ = jQuery; const $form = $("form[name='srchFrm']"); @@ -23,4 +23,6 @@ const searchUrl = $form.find("input[name='R2']").attr('value'); $form.attr('action', searchUrl); -}).call(); +} + +noTrackSearch();