Created
July 8, 2024 07:55
-
-
Save eniehack/f221420cec53cfa7bff526855310540e to your computer and use it in GitHub Desktop.
ブクログ検索機能のジャンルのデフォルトを「紙の本」にするuserscript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name booklogの検索でジャンルのデフォルトを紙の本にするくん | |
// @name:ja booklogの検索でジャンルのデフォルトを紙の本にするくん | |
// @namespace https://github.com/eniehack | |
// @match *://booklog.jp/* | |
// @grant none | |
// @version 0.1.0 | |
// @author eniehack | |
// @description ブクログの検索機能はジャンルが選べますが、デフォルトでは「本」となっており、電子書籍と紙の本が一緒くたにされて検索されます。このスクリプトはデフォルトを「紙の本」にすることで電子書籍を使わない人にとって検索機能を使いやすくします。 | |
// ==/UserScript== | |
const elem = document.getElementsByClassName("select-genre")[0]; | |
elem.value = "PaperBooks"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment