- 180 名前:名無しさん@お腹いっぱい。 mailto:sage [2009/07/19(日) 23:12:51 ID:i/y/15QR0]
- あっと、ごめんね
// ==UserScript== // @name All sans-serif // @include * // @run-at document-start // ==/UserScript== var addCSS = (function () { var style = document.createElement('style'); style.type = 'text/css'; document.documentElement.appendChild(style); return function (css) { style.appendChild(document.createTextNode(css+'\n')); }; })(); addCSS('* { font-family: sans-serif !important; }'); こうかな?
|

|