Github Code Font Changer
Change and customize the boring GitHub code viewer font
What is Github Code Font Changer?
Github Code Font Changer is a Chrome extension developed by AmraniCh, and its main feature is "Change and customize the boring GitHub code viewer font".
Extension Screenshots
Download Github Code Font Changer Extension CRX File
Download Github Code Font Changer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Github Code Font Changer |
ID | jmbophfanmlfkloliildahlpnlbojhfi |
Official URL | https://chromewebstore.google.com/detail/github-code-font-changer/jmbophfanmlfkloliildahlpnlbojhfi |
Description | Change and customize the boring GitHub code viewer font |
File Size | 62.46 KB |
Installation Count | 250 |
Current Version | 3.0 |
Last Updated | 2024-02-09 |
Publish Date | 2021-10-18 |
Rating | 5.00/5 Total 2 Ratings |
Developer | AmraniCh |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/AmraniCh/github-code-font-changer |
Help Page URL | https://github.com/AmraniCh/github-code-font-changer |
Supported Languages | 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\/*" ] } |