GitHub Issue Creator
Create GitHub issues with custom templates automatically applied
Cos'è GitHub Issue Creator?
GitHub Issue Creator è un'estensione di Chrome sviluppata da AO, e la sua funzione principale è "Create GitHub issues with custom templates automatically applied".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Issue Creator
Scarica i file di estensione GitHub Issue Creator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | bbjdgjibmbfbjhddelhcpflgbpmceicp |
| URL Ufficiale | https://chromewebstore.google.com/detail/github-issue-creator/bbjdgjibmbfbjhddelhcpflgbpmceicp |
| Descrizione | Create GitHub issues with custom templates automatically applied |
| Dimensione del File | 90.02 KB |
| Conteggio Installazioni | 19 |
| Versione Corrente | 0.1.9 |
| Ultimo Aggiornamento | 2016-12-21 |
| Data di Pubblicazione | 2016-12-20 |
| Valutazione | 5.00/5 Totale 4 Valutazioni |
| Sviluppatore | AO |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
} | |