GitHub Issue Creator

Create GitHub issues with custom templates automatically applied

Apa itu GitHub Issue Creator?

GitHub Issue Creator adalah ekstensi Chrome yang dikembangkan oleh AO, dan fitur utamanya adalah "Create GitHub issues with custom templates automatically applied".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi GitHub Issue Creator

Unduh file ekstensi GitHub Issue Creator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama GitHub Issue Creator GitHub Issue Creator
ID bbjdgjibmbfbjhddelhcpflgbpmceicp
URL Resmi https://chromewebstore.google.com/detail/github-issue-creator/bbjdgjibmbfbjhddelhcpflgbpmceicp
Deskripsi Create GitHub issues with custom templates automatically applied
Ukuran File 90.02 KB
Jumlah Instalasi 19
Versi Saat Ini 0.1.9
Terakhir Diperbarui 2016-12-21
Tanggal Publikasi 2016-12-20
Penilaian 5.00/5 Total 4 Penilaian
Pengembang AO
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
}