GitHub go to line number
Open-source extension which adds a go to line number modal right into GitHub
Τι είναι το GitHub go to line number;
Το GitHub go to line number είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον NicoSantangelo, και η κύρια λειτουργία του είναι "Open-source extension which adds a go to line number modal right into GitHub".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GitHub go to line number
Λήψη αρχείων επέκτασης GitHub go to line number σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
If you ever wanted to find a particular line number on GitHub and grew frustrated because Chrome refuses to find it, this is for you. The modal is toggled pressing ctrl+g and supports both diffs and single code files. You can cycle throughout the results using the enter key to move forward and shift+enter to move backwards.
Βασικές Πληροφορίες Επέκτασης
Όνομα | GitHub go to line number |
ID | cbpdahjcomdapkaojlbhbbmopbmbecio |
Επίσημο URL | https://chromewebstore.google.com/detail/github-go-to-line-number/cbpdahjcomdapkaojlbhbbmopbmbecio |
Περιγραφή | Open-source extension which adds a go to line number modal right into GitHub |
Μέγεθος Αρχείου | 16.24 KB |
Αριθμός Εγκαταστάσεων | 103 |
Τρέχουσα Έκδοση | 1.2.0 |
Τελευταία Ενημέρωση | 2016-07-19 |
Ημερομηνία Δημοσίευσης | 2016-07-18 |
Αξιολόγηση | 5.00/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | NicoSantangelo |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/NicoSantangelo/github-go-to-line-number |
URL της Σελίδας Πολιτικής Απορρήτου | https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub go to line number", "description": "Open-source extension which adds a go to line number modal right into GitHub", "short_name": "Github goto", "version": "1.2.0", "icons": { "16": "icons\/16.png", "19": "icons\/19.png", "38": "icons\/38.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.github.com\/*", "http:\/\/www.github.com\/*", "https:\/\/github.com\/*", "http:\/\/github.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "permissions": [], "web_accessible_resources": [ "modal.html" ] } |