Gitlab Contribution Counter

Count GitLab contributions like GitHub

什么是Gitlab Contribution Counter?

Gitlab Contribution Counter是由chigichan24开发的Chrome扩展程序,该扩展的主要功能是“Count GitLab contributions like GitHub”。

扩展截图

screenshot

下载Gitlab Contribution Counter扩展crx文件

下载Gitlab Contribution Counter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This is a chrome extension which display contributions on GitLab profile page                    

扩展基本信息

名称 Gitlab Contribution Counter Gitlab Contribution Counter
ID nkjkidmkdedgpddijnpnbedecdllcije
官方URL https://chromewebstore.google.com/detail/gitlab-contribution-count/nkjkidmkdedgpddijnpnbedecdllcije
简介 Count GitLab contributions like GitHub
文件大小 46.37 KB
安装次数 42
当前版本 1.0.0.0
更新时间 2020-12-28
上架时间 2020-12-27
评分 5.00/5 共1次评分
开发者 chigichan24
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/chigichan24/gitlab-contribution-count
帮助页面URL https://github.com/chigichan24/gitlab-contribution-count/issues
支持的语言 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
        }
    ]
}