GitHub SLOC
Display SLOC on GitHub
What is GitHub SLOC?
GitHub SLOC is a Chrome extension developed by martianyi, and its main feature is "Display SLOC on GitHub".
Extension Screenshots
Download GitHub SLOC Extension CRX File
Download GitHub SLOC extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Display source lines of code on GitHub. See website for more.
Extension Basic Information
Name | GitHub SLOC |
ID | fkjjjamhihnjmihibcmdnianbcbccpnn |
Official URL | https://chromewebstore.google.com/detail/github-sloc/fkjjjamhihnjmihibcmdnianbcbccpnn |
Description | Display SLOC on GitHub |
File Size | 826 KB |
Installation Count | 470 |
Current Version | 1.4.0 |
Last Updated | 2020-08-20 |
Publish Date | 2018-09-09 |
Rating | 3.83/5 Total 6 Ratings |
Developer | martianyi |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/martianyi/github-sloc |
Help Page URL | https://github.com/martianyi/github-sloc/issues |
Supported Languages | 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\/*" ] } |