Skip to content

Instantly share code, notes, and snippets.

@st98
Last active December 31, 2015 09:39
Show Gist options
  • Save st98/7968007 to your computer and use it in GitHub Desktop.
Save st98/7968007 to your computer and use it in GitHub Desktop.
「目指す」を「めざし」に置換するユーティリティ。
// ==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