OctoDraft

Save drafts of issues in github.

Hvad er OctoDraft?

OctoDraft er en Chrome-udvidelse udviklet af Dan Wild, og dens hovedfunktion er "Save drafts of issues in github.".

Udvidelsesskærmbilleder

screenshot

Download OctoDraft-udvidelses-CRX-fil

Download OctoDraft-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn OctoDraft OctoDraft
ID mjfaidoickdplapkfhajfkehpepmccfg
Officiel URL https://chrome.google.com/webstore/detail/octodraft/mjfaidoickdplapkfhajfkehpepmccfg
Beskrivelse Save drafts of issues in github.
Filstørrelse 58.54 KB
Antal Installationer 109
Nuværende Version 1.0.1
Senest Opdateret 2018-10-04
Udgivelsesdato 2018-10-04
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Dan Wild
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/wildeyes/octodraft
Hjælpeside-URL https://github.com/wildeyes/octodraft
Understøttede Sprog 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"
            ]
        }
    ]
}