font size keeper
by
noromanba
2014-11-24 [2014/11/24 01:13:57]
keep browser standard-font-size
@@ -20,9 +20,9 @@
};
})();
- // TODO loosed
+ // TBD not apply heding1-6
// keep browser minimum-font-size
addStyle([
- 'body { font-size: initial !important; }'
+ '* { font-size: initial; }'
].join('\n'));
})();
/*
* @title font size keeper
* @description keep browser minimum-font-size
* @include http://*
* @license MIT http://opensource.org/licenses/MIT
* @javascript_url
*/
// c.f. https://gist.github.com/noromanba/0199853e20eefe89ffbc
(function () {
var addStyle = (function () {
var parent = document.head || document.body || document.documentElement;
var style = document.createElement('style');
style.type = 'text/css';
parent.appendChild(style);
return function (css) {
style.appendChild(document.createTextNode(css + '\n'));
};
})();
// TBD not apply heding1-6
// keep browser minimum-font-size
addStyle([
'* { font-size: initial; }'
].join('\n'));
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。