OctoDraft

Save drafts of issues in github.

OctoDraftคืออะไร?

OctoDraft เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dan Wild และคุณลักษณะหลักของมันคือ "Save drafts of issues in github."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย OctoDraft

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
            ]
        }
    ]
}