2011年8月29日月曜日

Google Chromeでフォントをメイリオで強制的に表示

UserStyleSheetを利用してMSゴシック系のフォントをメイリオで表示させる。
Windows Vista以降

%LOCALAPPDATA%\Google\Chrome\User Data\Default\User StyleSheets\Custom.css

WindowsXP

%APPATA%\Google\Chrome\User Data\Default\User StyleSheets\Custom.css
@font-face {
font-family: "MS Pゴシック";
src: local("MeiryoKe_PGothic"), local("メイリオ"), local("MS Pゴシック");
}

@font-face {
font-family: "MS PGothic";
src: local("MeiryoKe_PGothic"), local("メイリオ"), local("MS Pゴシック");
}

@font-face {
font-family: "MS UI Gothic";
src: local("MeiryoKe_UIGothic"), local("Meiryo UI"), local("メイリオ"), local("MS UI Gothic");
}

@font-face {
font-family: "MS ゴシック";
src: local("MeiryoKe_Console"), local("MS ゴシック");
}

@font-face {
font-family: "MS Gothic";
src: local("MeiryoKe_Console"), local("MS ゴシック");
}

@font-face {
font-family: "MS UI Gothic";
src: local("MeiryoKe_UIGothic"), local("Meiryo UI"), local("メイリオ"), local("MS UI Gothic");
}

0 件のコメント:

コメントを投稿