OctoDraft

Save drafts of issues in github.

What is OctoDraft?

OctoDraft is a Chrome extension developed by Dan Wild, and its main feature is "Save drafts of issues in github.".

Extension Screenshots

screenshot

Download OctoDraft Extension CRX File

Download OctoDraft extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name OctoDraft OctoDraft
ID mjfaidoickdplapkfhajfkehpepmccfg
Official URL https://chrome.google.com/webstore/detail/octodraft/mjfaidoickdplapkfhajfkehpepmccfg
Description Save drafts of issues in github.
File Size 58.54 KB
Installation Count 109
Current Version 1.0.1
Last Updated 2018-10-04
Publish Date 2018-10-04
Rating 5.00/5 Total 2 Ratings
Developer Dan Wild
Email [email protected]
Payment Type free
Extension Website https://github.com/wildeyes/octodraft
Help Page URL https://github.com/wildeyes/octodraft
Supported Languages 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"
            ]
        }
    ]
}