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 |
电子邮箱 | [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\/*" ] } |