OctoDraft
Save drafts of issues in github.
Was ist OctoDraft?
OctoDraft ist eine Chrome-Erweiterung, die von Dan Wild entwickelt wurde, und ihr Hauptmerkmal ist "Save drafts of issues in github.".
Erweiterungsscreenshots
OctoDraft-Erweiterungs-CRX-Datei herunterladen
Laden Sie OctoDraft-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | mjfaidoickdplapkfhajfkehpepmccfg |
| Offizielle URL | https://chrome.google.com/webstore/detail/octodraft/mjfaidoickdplapkfhajfkehpepmccfg |
| Beschreibung | Save drafts of issues in github. |
| Dateigröße | 58.54 KB |
| Installationsanzahl | 109 |
| Aktuelle Version | 1.0.1 |
| Letztes Update | 2018-10-04 |
| Veröffentlichungsdatum | 2018-10-04 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | Dan Wild |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/wildeyes/octodraft |
| Hilfeseite URL | https://github.com/wildeyes/octodraft |
| Unterstützte Sprachen | 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"
]
}
]
} | |