GitLab Issues JSON Export

Export GitLab issues in JSON format.

¿Qué es GitLab Issues JSON Export?

GitLab Issues JSON Export es una extensión de Chrome desarrollada por https://zyndaa.com, y su función principal es "Export GitLab issues in JSON format.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión GitLab Issues JSON Export

Descarga archivos de extensión GitLab Issues JSON Export en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Export issues in GitLab repository to JSON file

In GitLab, it will take a lot of time to copy each issue details in the repository one by one.

Using this extension, export issues in GitLab repository to JSON files.

Follow the below steps to export the issues in GitLab repository to JSON file.

1) Install addon in Chrome.
2) Visit your GitLab repository.
3) Click on the addon icon on the top right side.
4) Click on the export button which will download the JSON file.                    

Información Básica de la Extensión

Nombre GitLab Issues JSON Export GitLab Issues JSON Export
ID mehhplefekhohpljmhlhijidkehphlpk
URL Oficial https://chromewebstore.google.com/detail/gitlab-issues-json-export/mehhplefekhohpljmhlhijidkehphlpk
Descripción Export GitLab issues in JSON format.
Tamaño del Archivo 244 KB
Cantidad de Instalaciones 51
Versión Actual 0.0.1
Última Actualización 2021-02-03
Fecha de Publicación 2021-02-03
Calificación 1.00/5 Total de 1 Calificaciones
Desarrollador https://zyndaa.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://zyndaa.com/
URL de la Página de Ayuda https://zyndaa.com/products/gitlab-issues-json-export-extension
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitLab Issues JSON Export",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Export GitLab issues in JSON format.",
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/git8.ahsan.in\/*"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/hide-16.png",
            "48": "images\/hide-48.png",
            "128": "images\/hide-128.png"
        },
        "default_title": "GitLab Issues JSON Export",
        "default_popup": "options.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}