change all UI fonts
Changes all the UI font to a user-given font.
change all UI fontsとは何ですか?
change all UI fontsはhttps://virutcham.caによって開発されたChromeの拡張機能で、その主な機能は「Changes all the UI font to a user-given font.」です。
拡張機能のスクリーンショット
change all UI fonts拡張機能のCRXファイルをダウンロード
change all UI fonts拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Changes all the font-faces on all the web sites to a user given local font. Enter your desired font in the options by clicking the extension icon.
Please note that this will change all the fonts of all elements, meaning Font-Awesome or any other sites that facilititate icons using fonts will also have their font changed. This will render those graphics as squares. I made this as a simple extension to force all the fonts for simple sites, so your mileage may vary. Thanks for understanding.
Source can be found here: https://github.com/dsivasuthan/change-all-ui-fonts
Please leave your feedback. Thank you. 拡張機能の基本情報
| 名前 | |
| ID | loiejdbcheeiipmakhghinclmpafiiel |
| 公式URL | https://chromewebstore.google.com/detail/change-all-ui-fonts/loiejdbcheeiipmakhghinclmpafiiel |
| 説明 | Changes all the UI font to a user-given font. |
| ファイルサイズ | 78.19 KB |
| インストール数 | 6,108 |
| 現在のバージョン | 1.4.2 |
| 最終更新日 | 2021-01-07 |
| 公開日 | 2020-05-21 |
| 評価 | 4.51/5 合計 59 レビュー |
| 開発者 | https://virutcham.ca |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"content_scripts": [
{
"all_frames": true,
"exclude_globs": [],
"include_globs": [
"*"
],
"js": [
"foo.js",
"scripts.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start"
}
],
"description": "Changes all the UI font to a user-given font.",
"manifest_version": 2,
"name": "change all UI fonts",
"options_page": "options.html",
"version": "1.4.2",
"browser_action": {
"default_icon": "icon.png",
"default_title": "change font family",
"default_popup": "options.html"
},
"icons": {
"128": "icon.png"
},
"background": {
"page": "background.html"
},
"permissions": [
"storage"
]
} | |