目次一覧
状態:-
閲覧数:522
投稿日:2022-06-28
更新日:2022-10-14
やりたいこと / 結論 / 試行錯誤履歴
やりたいこと / 結論 / 試行錯誤履歴
やりたいこと
Chromeで閲覧している任意URLのhtmlタグに対して、なるべく簡単に「html{font-size:0.1em!important;}」を追加したい
結論
chrome 拡張機能Stylusを利用すれば可能
html {
font-size: 0.1em!important
}
.rank{
display:none;
}
.inline{
padding-bottom: 5em;
margin-top: -5em;
}
2023 年 2 月 24 日時点のCSS
html,
body,
ul {
font-size: 0.1em!important
}
.rank {
display: none;
}
.inline {
padding-bottom: 5em;
margin-top: -5em;
}
.postdisplay{
margin:0;
padding : 0;
}
試行錯誤履歴
Greasemonkey
・Firefox (ja) 向け拡張機能
・今回対象外
Tampermonkey
・インストール後、userスクリプトを描いてみたが、jQuery関連と思われる箇所でエラー発生し解決できず。
Chromeで閲覧している任意URLのhtmlタグに対して、なるべく簡単に「html{font-size:0.1em!important;}」を追加したい