Last active
December 31, 2015 09:39
-
-
Save st98/7968007 to your computer and use it in GitHub Desktop.
「目指す」を「めざし」に置換するユーティリティ。
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 mezashi.js | |
// @namespace http://st98.github.io | |
// @description 「目指す」を「めざし」に置換するユーティリティ。 | |
// @include * | |
// ==/UserScript== | |
;(function () { | |
document.body.innerHTML = document.body.innerHTML.replace(/(目[指差]|めざ)[さ-そ]/g, 'めざし'); | |
}).call(this); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment