change all UI fonts
Changes all the UI font to a user-given font.
change all UI fontsคืออะไร?
change all UI fonts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://virutcham.ca และคุณลักษณะหลักของมันคือ "Changes all the UI font to a user-given font."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย change all UI fonts
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | change all UI fonts |
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 |
อีเมล | [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" ] } |