GitHub similar repository suggestions
It shows the similar repositories to the one which is currently open.
Τι είναι το GitHub similar repository suggestions;
Το GitHub similar repository suggestions είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Vivek Kumar, και η κύρια λειτουργία του είναι "It shows the similar repositories to the one which is currently open.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GitHub similar repository suggestions
Λήψη αρχείων επέκτασης GitHub similar repository suggestions σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
It gives a list of all the similar repositories which are similar to the one which is currently viewed. The list is sorted by the number of stars. Steps:- 1. Go to a repository, e.g. https://github.com/tensorflow/tensorflow 2. Wait for the page to load 3. Click the extension icon of Github Similar Repos on the top, beside address bar. For more details, visit https://github.com/vivekkumar2696/github-similar-repos If you like it consider buying a coffee.. https://www.buymeacoffee.com/vivekkumar2696
Βασικές Πληροφορίες Επέκτασης
Όνομα | GitHub similar repository suggestions |
ID | ppgdlobphnefimdieecenohghobnfndh |
Επίσημο URL | https://chromewebstore.google.com/detail/github-similar-repository/ppgdlobphnefimdieecenohghobnfndh |
Περιγραφή | It shows the similar repositories to the one which is currently open. |
Μέγεθος Αρχείου | 486 KB |
Αριθμός Εγκαταστάσεων | 111 |
Τρέχουσα Έκδοση | 1.0.0 |
Τελευταία Ενημέρωση | 2021-05-30 |
Ημερομηνία Δημοσίευσης | 2020-01-05 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | Vivek Kumar |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/vivekkumar2696/github-similar-repos |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub similar repository suggestions", "version": "1.0.0", "manifest_version": 2, "description": "It shows the similar repositories to the one which is currently open.", "permissions": [ "storage", "activeTab" ], "homepage_url": "https:\/\/github.com\/vivekkumar2696\/github-similar-repos", "author": "Vivek Kumar", "icons": { "32": ".\/icons\/GitHub-Mark-32px.png", "64": ".\/icons\/GitHub-Mark-64px.png", "128": ".\/icons\/GitHub-Mark-120px-plus.png" }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "js": [ ".\/src\/content.js" ], "css": [ ".\/src\/popup.css" ] } ], "web_accessible_resources": [ "src\/popup.html", "popup.css" ], "browser_action": { "default_icon": { "32": ".\/icons\/GitHub-Mark-32px.png", "64": ".\/icons\/GitHub-Mark-64px.png", "128": ".\/icons\/GitHub-Mark-120px-plus.png" }, "default_title": "GitHub Similar Repositories: Click to show\/hide similar repositories" }, "background": { "scripts": [ ".\/src\/background.js" ] } } |