GitHub Issue Creator
Create GitHub issues with custom templates automatically applied
Hvad er GitHub Issue Creator?
GitHub Issue Creator er en Chrome-udvidelse udviklet af AO, og dens hovedfunktion er "Create GitHub issues with custom templates automatically applied".
Udvidelsesskærmbilleder
Download GitHub Issue Creator-udvidelses-CRX-fil
Download GitHub Issue Creator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | GitHub Issue Creator |
ID | bbjdgjibmbfbjhddelhcpflgbpmceicp |
Officiel URL | https://chromewebstore.google.com/detail/github-issue-creator/bbjdgjibmbfbjhddelhcpflgbpmceicp |
Beskrivelse | Create GitHub issues with custom templates automatically applied |
Filstørrelse | 90.02 KB |
Antal Installationer | 19 |
Nuværende Version | 0.1.9 |
Senest Opdateret | 2016-12-21 |
Udgivelsesdato | 2016-12-20 |
Bedømmelse | 5.00/5 Samlet 4 Bedømmelser |
Udvikler | AO |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } |