Created
December 6, 2008 17:25
-
-
Save snaka/32925 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 mac_de_mona | |
// @namespace http://d.hatena.ne.jp/snaka72/ | |
// @description Change font style to 'IPA mona font' for 2ch blog | |
// @include http://yaruomatome.blog10.fc2.com/* | |
// ==/UserScript== | |
(function () { | |
var s = document.createElement('style'); | |
s.type = 'text/css'; | |
s.innerHTML = "*{font-family:'IPA \u30E2\u30CA\u30FC P\u30B4\u30B7\u30C3\u30AF' !important;}"; | |
document.getElementsByTagName('head')[0].appendChild(s); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment