Skip to content

Instantly share code, notes, and snippets.

@tkiapril
Created May 13, 2015 11:22
Show Gist options
  • Save tkiapril/5ab4c0f5e328a9533448 to your computer and use it in GitHub Desktop.
Save tkiapril/5ab4c0f5e328a9533448 to your computer and use it in GitHub Desktop.
엔하위키 미러 -> 나무위키 redirect userscript
// ==UserScript==
// @name Redirect to Namu Wiki
// @namespace tki
// @include https://mirror.enha.kr/wiki/*
// @version 1
// @grant none
// ==/UserScript==
window.location = "https://namu.wiki/w/" + window.location.href.replace(/([^\/]*\/){4}/, '')
@tkiapril
Copy link
Author

구글에서 검색하면 엔하위키 미러가 최상단에 뜨는 것을 나무위키로 보기 편하게 이동해주는 스크립트

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment