GitHub Issue Creator

Create GitHub issues with custom templates automatically applied

What is GitHub Issue Creator?

GitHub Issue Creator is a Chrome extension developed by AO, and its main feature is "Create GitHub issues with custom templates automatically applied".

Extension Screenshots

screenshot
screenshot
screenshot

Download GitHub Issue Creator Extension CRX File

Download GitHub Issue Creator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name GitHub Issue Creator GitHub Issue Creator
ID bbjdgjibmbfbjhddelhcpflgbpmceicp
Official URL https://chromewebstore.google.com/detail/github-issue-creator/bbjdgjibmbfbjhddelhcpflgbpmceicp
Description Create GitHub issues with custom templates automatically applied
File Size 90.02 KB
Installation Count 19
Current Version 0.1.9
Last Updated 2016-12-21
Publish Date 2016-12-20
Rating 5.00/5 Total 4 Ratings
Developer AO
Email [email protected]
Payment Type free
Supported Languages 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"
}