GitHub Issue Creator
Create GitHub issues with custom templates automatically applied
GitHub Issue Creator क्या है?
GitHub Issue Creator AO द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Create GitHub issues with custom templates automatically applied"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub Issue Creator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | GitHub Issue Creator |
ID | bbjdgjibmbfbjhddelhcpflgbpmceicp |
आधिकारिक URL | https://chromewebstore.google.com/detail/github-issue-creator/bbjdgjibmbfbjhddelhcpflgbpmceicp |
विवरण | Create GitHub issues with custom templates automatically applied |
फ़ाइल का आकार | 90.02 KB |
स्थापना संख्या | 19 |
वर्तमान संस्करण | 0.1.9 |
अंतिम अपडेट | 2016-12-21 |
प्रकाशन तिथि | 2016-12-20 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | AO |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } |