Last active
August 29, 2015 14:13
-
-
Save saschanaz/ce5eb3d732a2b728ec8f to your computer and use it in GitHub Desktop.
The reduction of Chosun
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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