GitHub Issue Copy Extension
This extension supports copying and creating new issues on GitHub.
Что такое GitHub Issue Copy Extension?
GitHub Issue Copy Extension - это расширение Chrome, разработанное Haruya Nakamura, и его основная функция - "This extension supports copying and creating new issues on GitHub.".
Снимки экрана расширения
Скачать файл CRX расширения GitHub Issue Copy Extension
Скачайте файлы расширений GitHub Issue Copy Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension supports copying and creating new issues on GitHub. Right-click on the screen of the issue you want to copy and click "Copy this issue" to open the screen to copy the Subject, Body, Labels, and Assignees to create a new issue.
Основная информация о расширении
Название | GitHub Issue Copy Extension |
ID | poibkcoliihonlklhhflnhjkjjbbmklf |
Официальный URL | https://chromewebstore.google.com/detail/github-issue-copy-extensi/poibkcoliihonlklhhflnhjkjjbbmklf |
Описание | This extension supports copying and creating new issues on GitHub. |
Размер файла | 55.59 KB |
Количество установок | 415 |
Текущая Версия | 1.1.1 |
Последнее Обновление | 2023-06-22 |
Дата публикации | 2021-08-03 |
Разработчик | Haruya Nakamura |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/hareruya-maro/github-issue-copy-extention |
URL страницы помощи | https://github.com/hareruya-maro/github-issue-copy-extention |
Поддерживаемые языки | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_Name__", "description": "__MSG_Description__", "manifest_version": 3, "default_locale": "en", "version": "1.1.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*\/issues\/*" ], "js": [ "content.js" ] } ], "permissions": [ "tabs", "contextMenus" ] } |