Old Github UI
GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.
Τι είναι το Old Github UI;
Το Old Github UI είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sreenivasan Ramesh, και η κύρια λειτουργία του είναι "GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Old Github UI
Λήψη αρχείων επέκτασης Old Github UI σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Get back the old Github User Interface. This extension moves the new sidebar back to the top, and makes the layout similar to the old user interface.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Old Github UI |
ID | dhifdlfedboijpanpblghhhakpnncadb |
Επίσημο URL | https://chromewebstore.google.com/detail/old-github-ui/dhifdlfedboijpanpblghhhakpnncadb |
Περιγραφή | GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look. |
Μέγεθος Αρχείου | 13.42 KB |
Αριθμός Εγκαταστάσεων | 292 |
Τρέχουσα Έκδοση | 2.3 |
Τελευταία Ενημέρωση | 2020-06-29 |
Ημερομηνία Δημοσίευσης | 2020-06-29 |
Αξιολόγηση | 3.83/5 Συνολικά 6 Αξιολογήσεις |
Προγραμματιστής | Sreenivasan Ramesh |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/sreenivasanramesh/old-github-ui |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/sreenivasanramesh/old-github-ui |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Old Github UI", "version": "2.3", "manifest_version": 2, "description": "GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.", "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.gihub.com\/*" ], "css": [ "headers.css" ], "run_at": "document_start" }, { "matches": [ "https:\/\/github.com\/*\/*" ], "exclude_globs": [ "https:\/\/github.com\/*\/*\/settings*", "https:\/\/github.com\/*\/*\/community*" ], "css": [ "repo-content.css" ], "run_at": "document_start" } ] } |