GitHub SLOC
Display SLOC on GitHub
GitHub SLOCとは何ですか?
GitHub SLOCはmartianyiによって開発されたChromeの拡張機能で、その主な機能は「Display SLOC on GitHub」です。
拡張機能のスクリーンショット
GitHub SLOC拡張機能のCRXファイルをダウンロード
GitHub SLOC拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Display source lines of code on GitHub. See website for more.
拡張機能の基本情報
名前 | GitHub SLOC |
ID | fkjjjamhihnjmihibcmdnianbcbccpnn |
公式URL | https://chromewebstore.google.com/detail/github-sloc/fkjjjamhihnjmihibcmdnianbcbccpnn |
説明 | Display SLOC on GitHub |
ファイルサイズ | 826 KB |
インストール数 | 470 |
現在のバージョン | 1.4.0 |
最終更新日 | 2020-08-20 |
公開日 | 2018-09-09 |
評価 | 3.83/5 合計 6 レビュー |
開発者 | martianyi |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/martianyi/github-sloc |
ヘルプページのURL | https://github.com/martianyi/github-sloc/issues |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub SLOC", "version": "1.4.0", "description": "Display SLOC on GitHub", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "options_page": "options.html", "web_accessible_resources": [ "options.html" ], "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "js": [ "js\/jquery.min.js", "js\/inject.js" ] } ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "permissions": [ "storage", "*:\/\/*.github.com\/*" ] } |