GitHub Issue Creator

Create GitHub issues with custom templates automatically applied

Wat is GitHub Issue Creator?

GitHub Issue Creator is een Chrome-extensie ontwikkeld door AO, en de belangrijkste functie is "Create GitHub issues with custom templates automatically applied".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie GitHub Issue Creator

Download GitHub Issue Creator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam GitHub Issue Creator GitHub Issue Creator
ID bbjdgjibmbfbjhddelhcpflgbpmceicp
Officiële URL https://chromewebstore.google.com/detail/github-issue-creator/bbjdgjibmbfbjhddelhcpflgbpmceicp
Beschrijving Create GitHub issues with custom templates automatically applied
Bestandsgrootte 90.02 KB
Aantal Installaties 19
Huidige Versie 0.1.9
Laatst Bijgewerkt 2016-12-21
Publicatiedatum 2016-12-20
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar AO
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
}