GitLab Issues JSON Export

Export GitLab issues in JSON format.

Cos'è GitLab Issues JSON Export?

GitLab Issues JSON Export è un'estensione di Chrome sviluppata da https://zyndaa.com, e la sua funzione principale è "Export GitLab issues in JSON format.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione GitLab Issues JSON Export

Scarica i file di estensione GitLab Issues JSON Export in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome GitLab Issues JSON Export GitLab Issues JSON Export
ID mehhplefekhohpljmhlhijidkehphlpk
URL Ufficiale https://chromewebstore.google.com/detail/gitlab-issues-json-export/mehhplefekhohpljmhlhijidkehphlpk
Descrizione Export GitLab issues in JSON format.
Dimensione del File 244 KB
Conteggio Installazioni 51
Versione Corrente 0.0.1
Ultimo Aggiornamento 2021-02-03
Data di Pubblicazione 2021-02-03
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore https://zyndaa.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://zyndaa.com/
URL della Pagina di Aiuto https://zyndaa.com/products/gitlab-issues-json-export-extension
Lingue Supportate 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'"
}