OctoDraft
Save drafts of issues in github.
Что такое OctoDraft?
OctoDraft - это расширение Chrome, разработанное Dan Wild, и его основная функция - "Save drafts of issues in github.".
Снимки экрана расширения
Скачать файл CRX расширения OctoDraft
Скачайте файлы расширений OctoDraft в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Adds a button to the issues section of github that allows to save a draft of your issue, in case you'd want to complete it later. When one reports an issue, an example of code is needed. Sometimes making a minimal, reproducible example just takes time, and you don't want to get distracted. It looks something like this: https://github.com/wildeyes/octodraft
Основная информация о расширении
Название | |
ID | mjfaidoickdplapkfhajfkehpepmccfg |
Официальный URL | https://chrome.google.com/webstore/detail/octodraft/mjfaidoickdplapkfhajfkehpepmccfg |
Описание | Save drafts of issues in github. |
Размер файла | 58.54 KB |
Количество установок | 109 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2018-10-04 |
Дата публикации | 2018-10-04 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Dan Wild |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/wildeyes/octodraft |
URL страницы помощи | https://github.com/wildeyes/octodraft |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OctoDraft", "version": "1.0.1", "manifest_version": 2, "description": "Save drafts of issues in github.", "homepage_url": "https:\/\/github.com\/wildeyes\/octodraft", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "permissions": [ "https:\/\/github.com\/*", "webNavigation" ], "background": { "scripts": [ "src\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |