OctoDraft

Save drafts of issues in github.

OctoDraft क्या है?

OctoDraft Dan Wild द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save drafts of issues in github."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में OctoDraft एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम OctoDraft OctoDraft
ID mjfaidoickdplapkfhajfkehpepmccfg
आधिकारिक URL https://chrome.google.com/webstore/detail/octodraft/mjfaidoickdplapkfhajfkehpepmccfg
विवरण Save drafts of issues in github.
फ़ाइल का आकार 58.54 KB
स्थापना संख्या 109
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2018-10-04
प्रकाशन तिथि 2018-10-04
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Dan Wild
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/wildeyes/octodraft
सहायता पृष्ठ URL https://github.com/wildeyes/octodraft
समर्थित भाषाएँ 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"
            ]
        }
    ]
}