Skip to content

Instantly share code, notes, and snippets.

@tnraro
Created February 13, 2021 23:34
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 tnraro/e6ee86bc9c0c091c92c6e181c0af76a1 to your computer and use it in GitHub Desktop.
Save tnraro/e6ee86bc9c0c091c92c6e181c0af76a1 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name 국국원 보여줘
// @version 0.1
// @namespace https://gist.github.com/tnRaro/e6ee86bc9c0c091c92c6e181c0af76a1/raw/koreangokr.user.js
// @description 국립국어원이 가끔 흰 화면만 보여주는 문제 수정
// @author tnRaro
// @include https://www.korean.go.kr/*
// ==/UserScript==
window.onload = function() {
var html = document.getElementsByTagName("html")[0];
html.className = html.className + " _JS"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment