Github Code Font Changer
Change and customize the boring GitHub code viewer font
Github Code Font Changerとは何ですか?
Github Code Font ChangerはAmraniChによって開発されたChromeの拡張機能で、その主な機能は「Change and customize the boring GitHub code viewer font」です。
拡張機能のスクリーンショット
Github Code Font Changer拡張機能のCRXファイルをダウンロード
Github Code Font Changer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| ID | jmbophfanmlfkloliildahlpnlbojhfi |
| 公式URL | https://chromewebstore.google.com/detail/github-code-font-changer/jmbophfanmlfkloliildahlpnlbojhfi |
| 説明 | Change and customize the boring GitHub code viewer font |
| ファイルサイズ | 62.46 KB |
| インストール数 | 250 |
| 現在のバージョン | 3.0 |
| 最終更新日 | 2024-02-09 |
| 公開日 | 2021-10-18 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | AmraniCh |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/AmraniCh/github-code-font-changer |
| ヘルプページのURL | https://github.com/AmraniCh/github-code-font-changer |
| 対応言語 | 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\/*"
]
} | |