Skip to content

Instantly share code, notes, and snippets.

@tkrkt
Created August 28, 2018 10:14
Show Gist options
  • Save tkrkt/ad55c6af1f6f0f241c9c5dc5f35b91ae to your computer and use it in GitHub Desktop.
Save tkrkt/ad55c6af1f6f0f241c9c5dc5f35b91ae to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name [Qiita] word-break normal
// @namespace https://gist.github.com/tkrkt
// @version 1
// @author tkrkt
// @match https://qiita.com/*
// @grant none
// ==/UserScript==
const style = document.createElement('style');
style.textContent = `
.it-MdContent {
word-break: normal;
}
`;
document.head.appendChild(style);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment