change all UI fonts
Changes all the UI font to a user-given font.
change all UI fonts là gì?
change all UI fonts là một tiện ích mở rộng Chrome được phát triển bởi https://virutcham.ca, và tính năng chính của nó là "Changes all the UI font to a user-given font.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng change all UI fonts
Tải xuống các tệp mở rộng change all UI fonts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | change all UI fonts |
ID | loiejdbcheeiipmakhghinclmpafiiel |
URL Chính Thức | https://chromewebstore.google.com/detail/change-all-ui-fonts/loiejdbcheeiipmakhghinclmpafiiel |
Mô tả | Changes all the UI font to a user-given font. |
Kích Thước Tệp | 78.19 KB |
Số Lần Cài Đặt | 6,108 |
Phiên Bản Hiện Tại | 1.4.2 |
Cập Nhật Lần Cuối | 2021-01-07 |
Ngày Phát Hành | 2020-05-21 |
Đánh Giá | 4.51/5 Tổng số 59 Đánh Giá |
Nhà Phát Triển | https://virutcham.ca |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |