GitHub similar repository suggestions
It shows the similar repositories to the one which is currently open.
Was ist GitHub similar repository suggestions?
GitHub similar repository suggestions ist eine Chrome-Erweiterung, die von Vivek Kumar entwickelt wurde, und ihr Hauptmerkmal ist "It shows the similar repositories to the one which is currently open.".
Erweiterungsscreenshots
GitHub similar repository suggestions-Erweiterungs-CRX-Datei herunterladen
Laden Sie GitHub similar repository suggestions-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ppgdlobphnefimdieecenohghobnfndh |
| Offizielle URL | https://chromewebstore.google.com/detail/github-similar-repository/ppgdlobphnefimdieecenohghobnfndh |
| Beschreibung | It shows the similar repositories to the one which is currently open. |
| Dateigröße | 486 KB |
| Installationsanzahl | 111 |
| Aktuelle Version | 1.0.0 |
| Letztes Update | 2021-05-30 |
| Veröffentlichungsdatum | 2020-01-05 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | Vivek Kumar |
| kumar.vivek2696@gmail.com | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/vivekkumar2696/github-similar-repos |
| Unterstützte Sprachen | 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"
]
}
} | |