Github PR Template Picker
Parses a Github repo for PR templates, adding a picker to the PR 'Create' view that will update the create description field.
Github PR Template Picker क्या है?
Github PR Template Picker CitizenKen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Parses a Github repo for PR templates, adding a picker to the PR 'Create' view that will update the create description field."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Github PR Template Picker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Github pull request templates customize and standardize the information expected when contributors create pull requests. Not all PRs require the same information, though. This plugin allows you to select a template to use when creating a PR. Repo owners can add multiple templates to the repo's root, or in the .github folder also in the repo root. Templates should be named like so: PULL_REQUEST_TEMPLATE.md Any template named "PULL_REQUEST_TEMPLATE.md" will be used by Github/this plugin as the default. For more information, see this Github help post https://help.github.com/articles/creating-a-pull-request-template-for-your-repository/ *** This plugin requires you to authenticate with a Github token with 'repo' access. See this link for help https://help.github.com/articles/creating-an-access-token-for-command-line-use/
एक्सटेंशन की मूल जानकारी
नाम | Github PR Template Picker |
ID | foaaibihjfcacpiehnjaghlhopofmmnb |
आधिकारिक URL | https://chromewebstore.google.com/detail/github-pr-template-picker/foaaibihjfcacpiehnjaghlhopofmmnb |
विवरण | Parses a Github repo for PR templates, adding a picker to the PR 'Create' view that will update the create description field. |
फ़ाइल का आकार | 74.71 KB |
स्थापना संख्या | 31 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2016-03-09 |
प्रकाशन तिथि | 2016-03-09 |
डेवलपर | CitizenKen |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github PR Template Picker", "description": "Parses a Github repo for PR templates, adding a picker to the PR 'Create' view that will update the create description field.", "version": "1.1", "icons": { "48": "icons\/ghtp_48.png", "128": "icons\/ghtp_128.png" }, "permissions": [ "activeTab", "identity", "tabs", "*:\/\/github.com\/*", "webRequest", "*:\/\/github.com\/*" ], "background": { "scripts": [ "jquery-1.11.3.min.js", "aes.js", "background.js" ], "persistent": true }, "browser_action": { "default_icon": "icons\/ghtp.png", "default_popup": "popups\/auth.html" }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "js": [ "jquery-1.11.3.min.js", "handlebars-v4.0.5.min.js", "templatePicker.js" ], "run_at": "document_end" } ] } |