GitHub Gloc
Gives you approximate count of lines of code on GitHub
What is GitHub Gloc?
GitHub Gloc is a Chrome extension developed by https://kas-elvirov.com, and its main feature is "Gives you approximate count of lines of code on GitHub".
Extension Screenshots
Download GitHub Gloc Extension CRX File
Download GitHub Gloc 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
Works for public and private repositories. Gives you approximate count of lines of code from: - project detail page, - user's repositories, - organization page, - search results page, - trending page.
Extension Basic Information
Name | GitHub Gloc |
ID | kaodcnpebhdbpaeeemkiobcokcnegdki |
Official URL | https://chromewebstore.google.com/detail/github-gloc/kaodcnpebhdbpaeeemkiobcokcnegdki |
Description | Gives you approximate count of lines of code on GitHub |
File Size | 93.58 KB |
Installation Count | 10,000 |
Current Version | 8.2.67 |
Last Updated | 2023-02-06 |
Publish Date | 2020-06-07 |
Rating | 4.38/5 Total 52 Ratings |
Developer | https://kas-elvirov.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/kas-elvirov/gloc |
Help Page URL | https://github.com/kas-elvirov/gloc/issues |
Privacy Policy Page URL | https://github.com/kas-elvirov/gloc/blob/master/PRIVACY.md |
Supported Languages | de,en,en-GB,en-US,fr,nl,es-419,pl,pt-BR,bg,ru,uk,ar,zh-CN,zh-TW,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "default_locale": "en", "name": "__MSG_name__", "short_name": "__MSG_shortName__", "author": "__MSG_author__", "description": "__MSG_description__", "version": "8.2.67", "browser_action": { "default_icon": "img\/icon128.png", "default_popup": "index.html", "default_title": "Github Gloc" }, "options_ui": { "page": "options.html" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "js": [ "src\/inject.js" ] } ], "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "permissions": [ "storage", "*:\/\/*.github.com\/*" ], "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "64": "img\/icon64.png", "128": "img\/icon128.png" } } |