Better Pull Request for GitHub
Add a file tree to GitHub Pull Requests
Better Pull Request for GitHub क्या है?
Better Pull Request for GitHub Tal Bereznitskey द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add a file tree to GitHub Pull Requests"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Better Pull Request for GitHub एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Make GitHub Pull Requests better with a file tree view and other UX improvements - Browse pull requests with an IDE like file tree - Private repositories support out of the box - GitHub Enterprise support - Other goodies: review viewed files, resizable tree, expand to full width and more This is an open-source community project and is in no way affiliated or endorsed by GitHub. For suggestions, issues and contribution, see https://github.com/berzniz/github_pr_tree
एक्सटेंशन की मूल जानकारी
नाम | Better Pull Request for GitHub |
ID | nfhdjopbhlggibjlimhdbogflgmbiahc |
आधिकारिक URL | https://chromewebstore.google.com/detail/better-pull-request-for-g/nfhdjopbhlggibjlimhdbogflgmbiahc |
विवरण | Add a file tree to GitHub Pull Requests |
फ़ाइल का आकार | 405 KB |
स्थापना संख्या | 10,000 |
वर्तमान संस्करण | 1.0.37 |
अंतिम अपडेट | 2022-04-08 |
प्रकाशन तिथि | 2020-05-01 |
रेटिंग | 4.88/5 कुल 215 रेटिंग्स |
डेवलपर | Tal Bereznitskey |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/berzniz/github_pr_tree |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better Pull Request for GitHub", "short_name": "Better PRs", "permissions": [ "contextMenus", "storage", "*:\/\/*.github.com\/*" ], "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.github.com\/*" ], "run_at": "document_idle", "js": [ "better_github_prs.js" ], "css": [] } ], "browser_action": { "default_icon": { "16": "16x16.png", "48": "48x48.png", "128": "128x128.png" }, "default_popup": "options.html" }, "options_page": "options.html", "web_accessible_resources": [ "options.html", "*.woff2" ], "icons": { "16": "16x16.png", "48": "48x48.png", "128": "128x128.png" }, "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';", "description": "Add a file tree to GitHub Pull Requests", "version": "1.0.37" } |