GitHub Issue Creator

Create GitHub issues with custom templates automatically applied

GitHub Issue Creatorคืออะไร?

GitHub Issue Creator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย AO และคุณลักษณะหลักของมันคือ "Create GitHub issues with custom templates automatically applied"

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

screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย GitHub Issue Creator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        HOW TO USE:
- Locate extension button or go to `chrome://extensions`, to find the extension options.
- Specify the repositories you would like to create issues for
- Go to the Extension Options for more info!  
Source Code:  
https://github.com/MattyAyOh/GitHubIssueCreator                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ GitHub Issue Creator GitHub Issue Creator
ID bbjdgjibmbfbjhddelhcpflgbpmceicp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-issue-creator/bbjdgjibmbfbjhddelhcpflgbpmceicp
คำอธิบาย Create GitHub issues with custom templates automatically applied
ขนาดไฟล์ 90.02 KB
จำนวนการติดตั้ง 19
เวอร์ชันปัจจุบัน 0.1.9
อัปเดตครั้งล่าสุด 2016-12-21
วันที่เผยแพร่ 2016-12-20
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา AO
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "script\/background.js"
        ]
    },
    "name": "GitHub Issue Creator",
    "version": "0.1.9",
    "manifest_version": 2,
    "description": "Create GitHub issues with custom templates automatically applied",
    "icons": {
        "16": "github_black.png",
        "48": "github_black.png"
    },
    "permissions": [
        "*:\/\/github.com\/",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/issues\/new"
            ],
            "js": [
                "script\/lib\/jquery.min.js",
                "script\/lib\/jquery.cursor-position.js",
                "script\/lib\/jquery.select-range.js",
                "script\/new-issue-page.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "github2.png"
        },
        "default_title": "Create new Github Issue",
        "default_popup": "popup.html"
    },
    "options_page": "options.html"
}