OctoDraft
Save drafts of issues in github.
Co to jest OctoDraft?
OctoDraft to rozszerzenie Chrome opracowane przez Dan Wild, a jego główną funkcją jest „Save drafts of issues in github.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia OctoDraft
Pobierz pliki rozszerzeń OctoDraft w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | mjfaidoickdplapkfhajfkehpepmccfg |
| Oficjalny URL | https://chrome.google.com/webstore/detail/octodraft/mjfaidoickdplapkfhajfkehpepmccfg |
| Opis | Save drafts of issues in github. |
| Rozmiar pliku | 58.54 KB |
| Liczba instalacji | 109 |
| Aktualna Wersja | 1.0.1 |
| Ostatnia Aktualizacja | 2018-10-04 |
| Data Publikacji | 2018-10-04 |
| Ocena | 5.00/5 Łącznie 2 Oceny |
| Deweloper | Dan Wild |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/wildeyes/octodraft |
| Adres URL Strony Pomocy | https://github.com/wildeyes/octodraft |
| Obsługiwane Języki | 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"
]
}
]
} | |