Skip to content

Instantly share code, notes, and snippets.

@kojp
Last active January 27, 2022 01:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kojp/b8e4b0775955045e04e3070945eaaba5 to your computer and use it in GitHub Desktop.
Save kojp/b8e4b0775955045e04e3070945eaaba5 to your computer and use it in GitHub Desktop.
Scrapboxのページ右上にある「PageMenu」に、前のページへ戻るボタンを設置する。使い方の説明は https://bit.ly/3g3MN6R にあります。
code:script.js
scrapbox.PageMenu.addMenu({
title: '戻る', // titleは変更可能。
image:'', // 'と'の間にアイコンのURLを記入する。空のままでは動作しない。
onClick: () => {
window.history.back(); // backをforwardに変えると「進む」ボタンになる。
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment