GitHub Issue Creator

Create GitHub issues with custom templates automatically applied

什麼是GitHub Issue Creator?

GitHub Issue Creator是由AO開發的Chrome擴展程式,該擴展的主要功能是“Create GitHub issues with custom templates automatically applied”。

擴展截圖

screenshot
screenshot
screenshot

下載GitHub Issue Creator擴展crx文件

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