OctoDraft

Save drafts of issues in github.

Wat is OctoDraft?

OctoDraft is een Chrome-extensie ontwikkeld door Dan Wild, en de belangrijkste functie is "Save drafts of issues in github.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie OctoDraft

Download OctoDraft-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam OctoDraft OctoDraft
ID mjfaidoickdplapkfhajfkehpepmccfg
Officiële URL https://chrome.google.com/webstore/detail/octodraft/mjfaidoickdplapkfhajfkehpepmccfg
Beschrijving Save drafts of issues in github.
Bestandsgrootte 58.54 KB
Aantal Installaties 109
Huidige Versie 1.0.1
Laatst Bijgewerkt 2018-10-04
Publicatiedatum 2018-10-04
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Dan Wild
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/wildeyes/octodraft
Help Pagina-URL https://github.com/wildeyes/octodraft
Ondersteunde Talen 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"
            ]
        }
    ]
}