Skip to content

Instantly share code, notes, and snippets.

@MCPE-PC
Last active February 17, 2019 17:33
Show Gist options
  • Save MCPE-PC/4386efd4504fb48ba5d0122022c4c00b to your computer and use it in GitHub Desktop.
Save MCPE-PC/4386efd4504fb48ba5d0122022c4c00b to your computer and use it in GitHub Desktop.
Anti-Mummumee
// ==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