GifLab

Add Gifs easily to your GitLab comments

Wat is GifLab?

GifLab is een Chrome-extensie ontwikkeld door atarin1990, en de belangrijkste functie is "Add Gifs easily to your GitLab comments".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie GifLab

Download GifLab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam GifLab GifLab
ID cfeilalkgohnnakmnemlmacmphkgfkkm
Officiële URL https://chromewebstore.google.com/detail/giflab/cfeilalkgohnnakmnemlmacmphkgfkkm
Beschrijving Add Gifs easily to your GitLab comments
Bestandsgrootte 7.28 KB
Aantal Installaties 51
Huidige Versie 1.1
Laatst Bijgewerkt 2021-09-27
Publicatiedatum 2021-09-24
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar atarin1990
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}