Better Pull Request for GitHub
Add a file tree to GitHub Pull Requests
Τι είναι το Better Pull Request for GitHub;
Το Better Pull Request for GitHub είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tal Bereznitskey, και η κύρια λειτουργία του είναι "Add a file tree to GitHub Pull Requests".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Better Pull Request for GitHub
Λήψη αρχείων επέκτασης Better Pull Request for GitHub σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" } |