Better Github
Enhance your code reading experience on GitHub
Better Githubとは何ですか?
Better Githubはceoshikharによって開発されたChromeの拡張機能で、その主な機能は「Enhance your code reading experience on GitHub」です。
拡張機能のスクリーンショット
Better Github拡張機能のCRXファイルをダウンロード
Better Github拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extensions allows you to change font and it's size of code text on GitHub. You have to provide a font name and size to be applied to all code text on GitHub.
拡張機能の基本情報
名前 | Better Github |
ID | ammeaejgjdeifjekkofhnliedhccbmgp |
公式URL | https://chromewebstore.google.com/detail/better-github/ammeaejgjdeifjekkofhnliedhccbmgp |
説明 | Enhance your code reading experience on GitHub |
ファイルサイズ | 59.88 KB |
インストール数 | 13 |
現在のバージョン | 1.2.0 |
最終更新日 | 2022-01-16 |
公開日 | 2021-05-18 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | ceoshikhar |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/ceoshikhar/better-github |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Better Github", "version": "1.2.0", "description": "Enhance your code reading experience on GitHub", "content_scripts": [ { "js": [ "better-github.js" ], "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ] } ], "permissions": [ "storage" ], "browser_action": { "default_title": "Better Github", "default_icon": ".\/assets\/favicon.png", "default_popup": "popup.html" }, "icons": { "16": ".\/assets\/icon16.png", "48": ".\/assets\/icon48.png", "128": ".\/assets\/icon128.png" } } |