Skip to content

Instantly share code, notes, and snippets.

@lambdalisue
Last active January 13, 2023 05:25
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 lambdalisue/ae41f7650d0536463b910394d7a1bfaa to your computer and use it in GitHub Desktop.
Save lambdalisue/ae41f7650d0536463b910394d7a1bfaa to your computer and use it in GitHub Desktop.
Docbase で記事幅をウィンドウ幅に合わせるブックマークレット
javascript:(function() {
const t = document.querySelector('.c-MainLayout_Content article div');
t.style.maxWidth = "none";
t.style.width = "99%";
}())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment