Github Expand Diff
A user script for Chrome that allows you to expand the missing lines in a Github diff.
Τι είναι το Github Expand Diff;
Το Github Expand Diff είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Michael Ridgway, και η κύρια λειτουργία του είναι "A user script for Chrome that allows you to expand the missing lines in a Github diff.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Github Expand Diff
Λήψη αρχείων επέκτασης Github Expand Diff σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Βασικές Πληροφορίες Επέκτασης
Όνομα | Github Expand Diff |
ID | imakbajpbolcgnkfhhlhipbjppfomlij |
Επίσημο URL | https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij |
Περιγραφή | A user script for Chrome that allows you to expand the missing lines in a Github diff. |
Μέγεθος Αρχείου | 5.63 KB |
Αριθμός Εγκαταστάσεων | 121 |
Τρέχουσα Έκδοση | 0.0.1.6 |
Τελευταία Ενημέρωση | 2014-06-18 |
Ημερομηνία Δημοσίευσης | 2014-06-18 |
Αξιολόγηση | 3.86/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | Michael Ridgway |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/mridgway/github-expand-diff |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/mridgway/github-expand-diff/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Expand Diff", "version": "0.0.1.6", "description": "A user script for Chrome that allows you to expand the missing lines in a Github diff.", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/*.com\/*\/*\/pull\/*", "https:\/\/*.com\/*\/*\/commit\/*", "https:\/\/*.com\/*\/*\/compare\/*" ], "include_globs": [ "https:\/\/github.com\/*", "https:\/\/github.*.com\/*", "https:\/\/git.*.com\/*" ], "run_at": "document_end", "js": [ "github-expand-diff.user.js" ] } ] } |