Gitlab Contribution Counter

Count GitLab contributions like GitHub

Hvad er Gitlab Contribution Counter?

Gitlab Contribution Counter er en Chrome-udvidelse udviklet af chigichan24, og dens hovedfunktion er "Count GitLab contributions like GitHub".

Udvidelsesskærmbilleder

screenshot

Download Gitlab Contribution Counter-udvidelses-CRX-fil

Download Gitlab Contribution Counter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Gitlab Contribution Counter Gitlab Contribution Counter
ID nkjkidmkdedgpddijnpnbedecdllcije
Officiel URL https://chromewebstore.google.com/detail/gitlab-contribution-count/nkjkidmkdedgpddijnpnbedecdllcije
Beskrivelse Count GitLab contributions like GitHub
Filstørrelse 46.37 KB
Antal Installationer 42
Nuværende Version 1.0.0.0
Senest Opdateret 2020-12-28
Udgivelsesdato 2020-12-27
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler chigichan24
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/chigichan24/gitlab-contribution-count
Hjælpeside-URL https://github.com/chigichan24/gitlab-contribution-count/issues
Understøttede Sprog 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
        }
    ]
}