OctoDraft

Save drafts of issues in github.

什麼是OctoDraft?

OctoDraft是由Dan Wild開發的Chrome擴展程式,該擴展的主要功能是“Save drafts of issues in github.”。

擴展截圖

screenshot

下載OctoDraft擴展crx文件

下載OctoDraft擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}