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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |