Skip to content

Instantly share code, notes, and snippets.

@eniehack
Created July 8, 2024 07:55
Show Gist options
  • Save eniehack/f221420cec53cfa7bff526855310540e to your computer and use it in GitHub Desktop.
Save eniehack/f221420cec53cfa7bff526855310540e to your computer and use it in GitHub Desktop.
ブクログ検索機能のジャンルのデフォルトを「紙の本」にするuserscript
// ==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