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 |
官方網址 | 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 |
電子郵箱 | [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\/*" ] } |