GitHub Issue Creator
Create GitHub issues with custom templates automatically applied
Что такое GitHub Issue Creator?
GitHub Issue Creator - это расширение Chrome, разработанное AO, и его основная функция - "Create GitHub issues with custom templates automatically applied".
Снимки экрана расширения
Скачать файл CRX расширения GitHub Issue Creator
Скачайте файлы расширений GitHub Issue Creator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
HOW TO USE:
- Locate extension button or go to `chrome://extensions`, to find the extension options.
- Specify the repositories you would like to create issues for
- Go to the Extension Options for more info!
Source Code:
https://github.com/MattyAyOh/GitHubIssueCreator Основная информация о расширении
| Название | |
| ID | bbjdgjibmbfbjhddelhcpflgbpmceicp |
| Официальный URL | https://chromewebstore.google.com/detail/github-issue-creator/bbjdgjibmbfbjhddelhcpflgbpmceicp |
| Описание | Create GitHub issues with custom templates automatically applied |
| Размер файла | 90.02 KB |
| Количество установок | 19 |
| Текущая Версия | 0.1.9 |
| Последнее Обновление | 2016-12-21 |
| Дата публикации | 2016-12-20 |
| Рейтинг | 5.00/5 Всего 4 оценок |
| Разработчик | AO |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"persistent": false,
"scripts": [
"script\/background.js"
]
},
"name": "GitHub Issue Creator",
"version": "0.1.9",
"manifest_version": 2,
"description": "Create GitHub issues with custom templates automatically applied",
"icons": {
"16": "github_black.png",
"48": "github_black.png"
},
"permissions": [
"*:\/\/github.com\/",
"tabs"
],
"content_scripts": [
{
"matches": [
"*:\/\/github.com\/*\/issues\/new"
],
"js": [
"script\/lib\/jquery.min.js",
"script\/lib\/jquery.cursor-position.js",
"script\/lib\/jquery.select-range.js",
"script\/new-issue-page.js"
]
}
],
"browser_action": {
"default_icon": {
"19": "github2.png"
},
"default_title": "Create new Github Issue",
"default_popup": "popup.html"
},
"options_page": "options.html"
} | |