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