GitHub Browser Extension
Make GitHub more usable for project management
GitHub Browser Extension क्या है?
GitHub Browser Extension Daniel Buckley द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make GitHub more usable for project management"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub Browser Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Browser extension which builds upon GitHub.com. This extensions main goal is to increase the usability of GitHub. All of the functionality additions can be seen and used at the issues tab on any of their repositories. It is jam packed with additional features which GitHub does not provide. For example: It produces a ScrumBoard which allows a development team and project manager manage issues more closely by assigning them into pipelines It has the ability to track issue description history and display who changed it Allows the repository owner to allow team members to view this issue history on a given issue Allows the repository owner to delete the issue history which they no longer need Gives quick access to a slide in partial ScrumBoard for easy update of issues pipelines Real-time update of the activity on all repositories the user owns in the pop up window The user can also donate to the project in the pop up window :)
एक्सटेंशन की मूल जानकारी
नाम | GitHub Browser Extension |
ID | mnbljefdmmfpeminkgdmpdocfifgbdhe |
आधिकारिक URL | https://chromewebstore.google.com/detail/github-browser-extension/mnbljefdmmfpeminkgdmpdocfifgbdhe |
विवरण | Make GitHub more usable for project management |
फ़ाइल का आकार | 145 KB |
स्थापना संख्या | 107 |
वर्तमान संस्करण | 1.360 |
अंतिम अपडेट | 2017-05-01 |
प्रकाशन तिथि | 2017-05-01 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | Daniel Buckley |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Browser Extension", "description": "Make GitHub more usable for project management", "manifest_version": 2, "version": "1.360", "icons": { "128": "Images\/gitHub.png" }, "browser_action": { "default_icon": "Images\/gitHub.png", "default_text": "GitHub Browser Extension", "default_popup": "Views\/GitHubLoginScreen.html" }, "background": { "scripts": [ "ContentScripts\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*", "*:\/\/github.ibm.com\/*", "*:\/\/github.ibm.com\/?code=*", "*:\/\/github.com\/?code=*" ], "css": [ "css\/ContentSite.css", "css\/sweetalert.css" ], "js": [ "js\/jquery-3.1.1.min.js", "js\/sweetalert.min.js", "js\/alertify.min.js", "js\/GitOperations.js", "js\/Cookies.js", "ContentScripts\/EstimatesAndPipelines.js", "ContentScripts\/CookieInsert.js" ] } ], "web_accessible_resources": [ "Images\/openIssue.PNG", "Images\/closedIssue.PNG" ], "permissions": [ "tabs", "cookies", "*:\/\/github.ibm.com\/?code=*", "*:\/\/github.com\/?code=*", "https:\/\/github.com\/login\/oauth\/access_token", "https:\/\/github.ibm.com\/login\/oauth\/access_token", "https:\/\/testdeployment2017.azurewebsites.net\/*", "webNavigation" ], "content_security_policy": "script-src 'self' https:\/\/js.stripe.com\/v2\/stripe.js; object-src 'self'", "author": "Daniel Buckley" } |