GitLab Issues JSON Export
Export GitLab issues in JSON format.
Что такое GitLab Issues JSON Export?
GitLab Issues JSON Export - это расширение Chrome, разработанное https://zyndaa.com, и его основная функция - "Export GitLab issues in JSON format.".
Снимки экрана расширения
Скачать файл CRX расширения GitLab Issues JSON Export
Скачайте файлы расширений GitLab Issues JSON Export в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | GitLab Issues JSON Export |
ID | mehhplefekhohpljmhlhijidkehphlpk |
Официальный URL | https://chromewebstore.google.com/detail/gitlab-issues-json-export/mehhplefekhohpljmhlhijidkehphlpk |
Описание | Export GitLab issues in JSON format. |
Размер файла | 244 KB |
Количество установок | 51 |
Текущая Версия | 0.0.1 |
Последнее Обновление | 2021-02-03 |
Дата публикации | 2021-02-03 |
Рейтинг | 1.00/5 Всего 1 оценок |
Разработчик | https://zyndaa.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://zyndaa.com/ |
URL страницы помощи | https://zyndaa.com/products/gitlab-issues-json-export-extension |
Поддерживаемые языки | 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'" } |