Skip to content

Instantly share code, notes, and snippets.

@enerick
Last active September 2, 2021 09:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enerick/a6bafc80c5267e6637d44739891c10bd to your computer and use it in GitHub Desktop.
Save enerick/a6bafc80c5267e6637d44739891c10bd to your computer and use it in GitHub Desktop.
爆速調整さんブックマークレット
javascript: document.querySelectorAll(".oax").forEach(function(e) {e.addEventListener("mouseenter", function() { e.parentNode.childNodes.forEach((e) => { e.classList.remove("active"); }); e.classList.add("active"); e.parentNode.firstElementChild.value = parseInt(e.id.slice(-1)) + 1}, false);})

これは何

調整さんを爆速入力する bookmarklet です。

How to Use

  1. bakusoku-chouseisan.js をコピペしてブックマークに追加します。
  2. 任意の調整さんページでブックマークレットを実行します。
  3. マウスカーソルをのせるだけで選択されるようになるので爆速選択できるようになります。

免責

2020-08-21 時点の HTML 構造に強く依存しているので、調整さん側の構造が変わったら動かなくなるかもしれませんがご了承ください。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment