Skip to content

Instantly share code, notes, and snippets.

@saschanaz
Last active August 29, 2015 14:13
Show Gist options
  • Select an option

  • Save saschanaz/ce5eb3d732a2b728ec8f to your computer and use it in GitHub Desktop.

Select an option

Save saschanaz/ce5eb3d732a2b728ec8f to your computer and use it in GitHub Desktop.
The reduction of Chosun
// ==UserScript==
// @name The reduction of Chosun
// @namespace sn-chosun-webtoon-reducer
// @include http://comic.naver.com/webtoon/detail.nhn?titleId=642598*
// @version 1.1
// @grant none
// ==/UserScript==
(() => {
var reducer = document.createElement("style");
reducer.textContent = ".wt_viewer img { max-width: 400px; }";
document.head.appendChild(reducer);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment