GitHub PR Helper
View and manage labels in GitHub Pull Request views.
GitHub PR Helper क्या है?
GitHub PR Helper Pete Bacon Darwin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View and manage labels in GitHub Pull Request views."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub PR Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A Chrome Extension to make the Pull Request view on GitHub nicer ** Major change: Authorization is now done through Personal Access Tokens. You'll need to update your configuration. See the README** For some reason GitHub doesn't provide the same UI for viewing and managing labels on Pull Requests as it does for Issues. In a large project with lots of Pull Requests (such as AngularJS) it is really annoying to have to use the Issue List page for viewing and managing Pull Request labels. This extension, injects this missing UI into GitHub Pull Request list pages to make life easier all round. Features include: - Display labels on PR list pages - Display labels on PR detail pages (removed as Github now does this) - Manage PR labels on PR detail pages (removed as Github now does this) - Milestones shown on PR list pages Please see the README in the GitHub repository (https://github.com/petebacondarwin/github-pr-helper) for further installation and usage instructions; and submit issues or pull requests to make it better!
एक्सटेंशन की मूल जानकारी
नाम | |
ID | mokbklfnaddkkbolfldepnkfmanfhpen |
आधिकारिक URL | https://chrome.google.com/webstore/detail/github-pr-helper/mokbklfnaddkkbolfldepnkfmanfhpen |
विवरण | View and manage labels in GitHub Pull Request views. |
फ़ाइल का आकार | 363 KB |
स्थापना संख्या | 38 |
वर्तमान संस्करण | 0.3.0 |
अंतिम अपडेट | 2014-01-30 |
प्रकाशन तिथि | 2014-01-30 |
रेटिंग | 4.50/5 कुल 2 रेटिंग्स |
डेवलपर | Pete Bacon Darwin |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/petebacondarwin/github-pr-helper |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub PR Helper", "description": "View and manage labels in GitHub Pull Request views.", "version": "0.3.0", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "author": "Pete Bacon Darwin", "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/pull*" ], "css": [ "styles.css" ], "js": [ "lib\/angular.js", "src\/CSRFScraper.js", "src\/githubAPI.js", "src\/labels.js", "src\/listGroupItems.js", "src\/credentialsForm.js", "src\/githubHacks.js", "src\/flashMessages.js", "src\/extension.js" ] } ], "web_accessible_resources": [ "lib\/jquery-2.0.3.min.map" ] } |