nosey
Extension to browse libraries/plugins on github while surfing through source code
Τι είναι το nosey;
Το nosey είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον sebastianvera, και η κύρια λειτουργία του είναι "Extension to browse libraries/plugins on github while surfing through source code".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης nosey
Λήψη αρχείων επέκτασης nosey σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Nosey it's a chrome extension that enables you to easily browse libraries/plugins when surfing through github repositories source code. It works by taking you to the library's documentation or repository page just clicking on it. If you are constantly googling for libraries when browsing repository's code, this extension is for you. I know, you can just type it on the url bar ... but I'm lazy. It currently works with javascript, typescript, go and .vim files. If the surfed file does not have a known supported extension, nosey won't add the annotations, so clicking a library will do nothing, but you can manually select the language parser by clicking nosey extension icon next to chrome's url bar.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | aahegjigldllknbphcibmhcjehnfjoga |
Επίσημο URL | https://chromewebstore.google.com/detail/nosey/aahegjigldllknbphcibmhcjehnfjoga |
Περιγραφή | Extension to browse libraries/plugins on github while surfing through source code |
Μέγεθος Αρχείου | 26.13 KB |
Αριθμός Εγκαταστάσεων | 13 |
Τρέχουσα Έκδοση | 1.1.0 |
Τελευταία Ενημέρωση | 2017-07-12 |
Ημερομηνία Δημοσίευσης | 2017-07-11 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | sebastianvera |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/sebastianvera/nosey |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/sebastianvera/nosey |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "nosey", "description": "Extension to browse libraries\/plugins on github while surfing through source code", "version": "1.1.0", "background": { "scripts": [ ".\/background.js" ], "persitent": false }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/www.github.com\/*" ], "js": [ ".\/index.js" ] } ], "icons": { "16": ".\/logo16.png", "48": ".\/logo48.png", "128": ".\/logo128.png" }, "page_action": { "default_icon": { "16": ".\/logo16.png", "24": ".\/logo24.png", "32": ".\/logo32.png" }, "default_popup": ".\/popup.html" }, "permissions": [ "tabs" ] } |