GitHub Issue Creator
Create GitHub issues with custom templates automatically applied
Co to jest GitHub Issue Creator?
GitHub Issue Creator to rozszerzenie Chrome opracowane przez AO, a jego główną funkcją jest „Create GitHub issues with custom templates automatically applied”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GitHub Issue Creator
Pobierz pliki rozszerzeń GitHub Issue Creator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | GitHub Issue Creator |
ID | bbjdgjibmbfbjhddelhcpflgbpmceicp |
Oficjalny URL | https://chromewebstore.google.com/detail/github-issue-creator/bbjdgjibmbfbjhddelhcpflgbpmceicp |
Opis | Create GitHub issues with custom templates automatically applied |
Rozmiar pliku | 90.02 KB |
Liczba instalacji | 19 |
Aktualna Wersja | 0.1.9 |
Ostatnia Aktualizacja | 2016-12-21 |
Data Publikacji | 2016-12-20 |
Ocena | 5.00/5 Łącznie 4 Oceny |
Deweloper | AO |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } |