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.
擴展基本資訊
名稱 | Github Code Font Changer |
ID | jmbophfanmlfkloliildahlpnlbojhfi |
官方網址 | 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 |
電子郵箱 | [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\/*" ] } |