GitHub Enhancement Suite
A set of tools to enhance the GitHub experience.
Τι είναι το GitHub Enhancement Suite;
Το GitHub Enhancement Suite είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον DTwigs, και η κύρια λειτουργία του είναι "A set of tools to enhance the GitHub experience.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GitHub Enhancement Suite
Λήψη αρχείων επέκτασης GitHub Enhancement Suite σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The GitHub Enhancement Suite improves your GitHub experience. Tools: File Filter: Filter your github files by file type when viewing code changes. Commit Compare: a small "down arrow" icon next to each commit in a PR allowing you to compare that commit to the latest commit in that PR. Source Code: https://github.com/DTwigs/FilterDiff
Βασικές Πληροφορίες Επέκτασης
Όνομα | GitHub Enhancement Suite |
ID | eiehflbilhldhfbnolbnggcapbjmnpmo |
Επίσημο URL | https://chromewebstore.google.com/detail/github-enhancement-suite/eiehflbilhldhfbnolbnggcapbjmnpmo |
Περιγραφή | A set of tools to enhance the GitHub experience. |
Μέγεθος Αρχείου | 56.24 KB |
Αριθμός Εγκαταστάσεων | 260 |
Τρέχουσα Έκδοση | 0.4 |
Τελευταία Ενημέρωση | 2014-02-22 |
Ημερομηνία Δημοσίευσης | 2014-02-21 |
Αξιολόγηση | 2.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | DTwigs |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Enhancement Suite", "version": "0.4", "manifest_version": 2, "description": "A set of tools to enhance the GitHub experience.", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "name": "Initialize GitHub Enhancement Suite", "default_icon": "images\/icon128.png" }, "web_accessible_resources": [ "images\/icon.png" ], "content_scripts": [ { "js": [ "jquery.min.js", "background.js" ], "css": [ "mystyles.css" ], "matches": [ "http:\/\/github.com\/*", "https:\/\/github.com\/*" ] } ] } |