Gitlab Contribution Counter
Count GitLab contributions like GitHub
What is Gitlab Contribution Counter?
Gitlab Contribution Counter is a Chrome extension developed by chigichan24, and its main feature is "Count GitLab contributions like GitHub".
Extension Screenshots
Download Gitlab Contribution Counter Extension CRX File
Download Gitlab Contribution Counter 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
This is a chrome extension which display contributions on GitLab profile page
Extension Basic Information
Name | Gitlab Contribution Counter |
ID | nkjkidmkdedgpddijnpnbedecdllcije |
Official URL | https://chromewebstore.google.com/detail/gitlab-contribution-count/nkjkidmkdedgpddijnpnbedecdllcije |
Description | Count GitLab contributions like GitHub |
File Size | 46.37 KB |
Installation Count | 42 |
Current Version | 1.0.0.0 |
Last Updated | 2020-12-28 |
Publish Date | 2020-12-27 |
Rating | 5.00/5 Total 1 Ratings |
Developer | chigichan24 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/chigichan24/gitlab-contribution-count |
Help Page URL | https://github.com/chigichan24/gitlab-contribution-count/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gitlab Contribution Counter", "version": "1.0.0.0", "description": "Count GitLab contributions like GitHub", "browser_action": { "default_icon": "icon.png" }, "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/gitlab.com\/*" ], "js": [ "app.js" ], "run_at": "document_end", "all_frames": true } ] } |