GitHub Issue Creator
Create GitHub issues with custom templates automatically applied
Vad är GitHub Issue Creator?
GitHub Issue Creator är en Chrome-tillägg utvecklad av AO, och dess huvudfunktion är "Create GitHub issues with custom templates automatically applied".
Tilläggsskärmbilder
Ladda ner GitHub Issue Creator-förlängningens CRX-fil
Ladda ner GitHub Issue Creator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | bbjdgjibmbfbjhddelhcpflgbpmceicp |
| Officiell webbadress | https://chromewebstore.google.com/detail/github-issue-creator/bbjdgjibmbfbjhddelhcpflgbpmceicp |
| Beskrivning | Create GitHub issues with custom templates automatically applied |
| Filstorlek | 90.02 KB |
| Antal Installationer | 19 |
| Aktuell Version | 0.1.9 |
| Senast Uppdaterad | 2016-12-21 |
| Publiceringsdatum | 2016-12-20 |
| Betyg | 5.00/5 Totalt 4 Betyg |
| Utvecklare | AO |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
} | |