GifLab

Add Gifs easily to your GitLab comments

Hvad er GifLab?

GifLab er en Chrome-udvidelse udviklet af atarin1990, og dens hovedfunktion er "Add Gifs easily to your GitLab comments".

Udvidelsesskærmbilleder

screenshot

Download GifLab-udvidelses-CRX-fil

Download GifLab-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

                        Adds Gif option to button bar on GitLab comment section. 
To makeit work, click on the new button Gif, search your favourite gif and add it as a markdown element!                    

Grundlæggende oplysninger om udvidelsen

Navn GifLab GifLab
ID cfeilalkgohnnakmnemlmacmphkgfkkm
Officiel URL https://chromewebstore.google.com/detail/giflab/cfeilalkgohnnakmnemlmacmphkgfkkm
Beskrivelse Add Gifs easily to your GitLab comments
Filstørrelse 7.28 KB
Antal Installationer 51
Nuværende Version 1.1
Senest Opdateret 2021-09-27
Udgivelsesdato 2021-09-24
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler atarin1990
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GifLab",
    "description": "Add Gifs easily to your GitLab comments",
    "version": "1.1",
    "manifest_version": 2,
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gitlab.com\/*"
            ],
            "js": [
                ".\/giflab.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "gif.svg"
    ]
}