Github Code Font Changer
Change and customize the boring GitHub code viewer font
Github Code Font Changer là gì?
Github Code Font Changer là một tiện ích mở rộng Chrome được phát triển bởi AmraniCh, và tính năng chính của nó là "Change and customize the boring GitHub code viewer 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 Github Code Font Changer
Tải xuống các tệp mở rộng Github Code Font Changer 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
Unhappy with the boring GitHub code viewer font? You're looking for a way to change it without affecting other website's fonts? Well, this extension is made for you raised_hands. Features: - As of Version 3, changing font size is supported. - As of version 2, you can use the fonts installed in your local machine alongside the fonts provided by the extension. - Change the font weight for the selected font family. - Hide the indentation guides. Available fonts : - Anonymous Mono. - Atma. - Courier Prime. - Fira Code. - Inconsolata. - IBM Plex Mono. - JetBrains Mono. - Oxygen Mono. - PT Mono. - Roboto Mono. - Share Tech Mono. - Source Code Pro. - Space Mono. - Ubuntu Mono.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Github Code Font Changer |
ID | jmbophfanmlfkloliildahlpnlbojhfi |
URL Chính Thức | https://chromewebstore.google.com/detail/github-code-font-changer/jmbophfanmlfkloliildahlpnlbojhfi |
Mô tả | Change and customize the boring GitHub code viewer font |
Kích Thước Tệp | 62.46 KB |
Số Lần Cài Đặt | 250 |
Phiên Bản Hiện Tại | 3.0 |
Cập Nhật Lần Cuối | 2024-02-09 |
Ngày Phát Hành | 2021-10-18 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | AmraniCh |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/AmraniCh/github-code-font-changer |
URL Trang Trợ Giúp | https://github.com/AmraniCh/github-code-font-changer |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Code Font Changer", "description": "Change and customize the boring GitHub code viewer font", "version": "3.0", "icons": { "16": "images\/logo\/V2\/icon16.png", "48": "images\/logo\/V2\/icon48.png", "128": "images\/logo\/V2\/icon128.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.github.com\/*" ], "run_at": "document_idle", "js": [ "content.js" ] } ], "permissions": [ "storage", "https:\/\/*.github.com\/*" ] } |