GitHub Repository Explorer
Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…
Τι είναι το GitHub Repository Explorer;
Το GitHub Repository Explorer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον usufdev.com, και η κύρια λειτουργία του είναι "Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GitHub Repository Explorer
Λήψη αρχείων επέκτασης GitHub Repository Explorer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension for launching Recent GitHub Repositories, or searching on GitHub, inspired by VS Code Launcher by Microsoft (VS Code Team). Features - Type repo into your browser’s search bar to activate the omnibox and launch your recent GitHub repositories - If the repository is not in your browser history our extension help you to will search it from GitHub. -If you click the icon of the extension itself, it will take you to the GitHub home page.
Βασικές Πληροφορίες Επέκτασης
Όνομα | GitHub Repository Explorer |
ID | eahjlihgcopjpngnogijleocdjegledp |
Επίσημο URL | https://chromewebstore.google.com/detail/github-repository-explore/eahjlihgcopjpngnogijleocdjegledp |
Περιγραφή | Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension… |
Μέγεθος Αρχείου | 16.38 KB |
Αριθμός Εγκαταστάσεων | 206 |
Τρέχουσα Έκδοση | 1.0.0 |
Τελευταία Ενημέρωση | 2023-08-22 |
Ημερομηνία Δημοσίευσης | 2022-10-17 |
Αξιολόγηση | 5.00/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | usufdev.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/uwussimo/Chrome-GitHub-Repo-Launcher-Extension/issues |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GitHub Repository Explorer", "version": "1.0.0", "action": { "default_icon": "github.png" }, "background": { "service_worker": "eventPage.js" }, "icons": { "256": "github.png" }, "commands": { "launchVSCode": { "suggested_key": { "default": "Ctrl+Period", "mac": "Command+Period" }, "description": "GitHub Repository" } }, "permissions": [ "tabs", "history", "storage" ], "omnibox": { "keyword": "repo" } } |