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 |
| 官方網址 | 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 |
| 電子郵箱 | [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"
]
} | |