GitHub File Diff
View diffs of files and directories on GitHub.
Τι είναι το GitHub File Diff;
Το GitHub File Diff είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://akr.am, και η κύρια λειτουργία του είναι "View diffs of files and directories on GitHub.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GitHub File Diff
Λήψη αρχείων επέκτασης GitHub File Diff σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
To use this extension, go to a file or directory in GitHub and click the **History** button. Then, click on any commit. The extension will override the click to show the diffs of only the relevant files instead of GitHub's default behavior of showing the entire commit's diff. This is especially helpful when a commit is very large and GitHub only shows a partial diff or none at all. To get the regular view, simply refresh the page.
Βασικές Πληροφορίες Επέκτασης
Όνομα | GitHub File Diff |
ID | lmhbkinmjbfihpkihjdhcagnigpklinh |
Επίσημο URL | https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh |
Περιγραφή | View diffs of files and directories on GitHub. |
Μέγεθος Αρχείου | 354 KB |
Αριθμός Εγκαταστάσεων | 153 |
Τρέχουσα Έκδοση | 1.1.9 |
Τελευταία Ενημέρωση | 2024-02-04 |
Ημερομηνία Δημοσίευσης | 2020-03-31 |
Προγραμματιστής | https://akr.am |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/mohd-akram/github-file-diff/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub File Diff", "version": "1.1.9", "description": "View diffs of files and directories on GitHub.", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png", "256": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "vendor.css" ], "js": [ "vendor.js", "main.js" ] } ] } |