/*
* @title Disable MS UI Gothic
* @description 指定されているMS UI Gothicを無効にする。
* @include http://*
* @license MIT License
* @javascript_url
*/
(function() {
var s = document.createElement('style');
s.setAttribute('type', 'text/css');
s.innerHTML='@font-face{font-family:"MS UI Gothic";src: local(null);}';
document.getElementsByTagName('head').item(0).appendChild(s);
})();