Last active
February 17, 2019 17:33
-
-
Save MCPE-PC/4386efd4504fb48ba5d0122022c4c00b to your computer and use it in GitHub Desktop.
Anti-Mummumee
This file contains 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 Anti-Mummumee | |
// @namespace https://gist.github.com/MCPE-PC/4386efd4504fb48ba5d0122022c4c00b | |
// @version 1.1 | |
// @encoding utf-8 | |
// @icon https://t1.daumcdn.net/cfile/tistory/1671B1395128AB8A23 | |
// @description try to take over the world! | |
// @author MCPE_PC | |
// @updateURL https://gist.githubusercontent.com/MCPE-PC/4386efd4504fb48ba5d0122022c4c00b/raw/23ea024e00688e0b8dad5723837b119adad09d4f/anti-mummumee.user.js | |
// @downloadURL https://gist.githubusercontent.com/MCPE-PC/4386efd4504fb48ba5d0122022c4c00b/raw/23ea024e00688e0b8dad5723837b119adad09d4f/anti-mummumee.user.js | |
// @match https://blog.jinh.kr/835 | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== | |
(function () { | |
const script = document.createElement('script'); | |
script.innerHTML = ` | |
const mummumee = function() {}; | |
console.log('멈뭄미의 저주를 풀었습니다!'); | |
`; | |
document.head.appendChild(script); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment