OctoDraft
Save drafts of issues in github.
Vad är OctoDraft?
OctoDraft är en Chrome-tillägg utvecklad av Dan Wild, och dess huvudfunktion är "Save drafts of issues in github.".
Tilläggsskärmbilder
Ladda ner OctoDraft-förlängningens CRX-fil
Ladda ner OctoDraft-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | mjfaidoickdplapkfhajfkehpepmccfg |
| Officiell webbadress | https://chrome.google.com/webstore/detail/octodraft/mjfaidoickdplapkfhajfkehpepmccfg |
| Beskrivning | Save drafts of issues in github. |
| Filstorlek | 58.54 KB |
| Antal Installationer | 109 |
| Aktuell Version | 1.0.1 |
| Senast Uppdaterad | 2018-10-04 |
| Publiceringsdatum | 2018-10-04 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | Dan Wild |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/wildeyes/octodraft |
| Hjälpsida URL | https://github.com/wildeyes/octodraft |
| Stödda Språk | 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"
]
}
]
} | |