Useful Forks
To list GitHub forks ordered by stars, with additional information and automatic filtering of irrelevant ones.
Was ist Useful Forks?
Useful Forks ist eine Chrome-Erweiterung, die von https://useful-forks.github.io entwickelt wurde, und ihr Hauptmerkmal ist "To list GitHub forks ordered by stars, with additional information and automatic filtering of irrelevant ones.".
Erweiterungsscreenshots
Useful Forks-Erweiterungs-CRX-Datei herunterladen
Laden Sie Useful Forks-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
The plugin inserts a button next to the "Fork" button when you visit a GitHub repository. Clicking on it will open a new tab which will use the online tool to scan the forks. This tool aims at increasing the discoverability of useful forks of open-source projects. The criteria is simple: if a fork was created, but never received any other activity on its main branch, it is filtered out. For sharing: the results can be exported as CSV, or you can point people to the quick-link URL.
Grundlegende Informationen zur Erweiterung
Name | Useful Forks |
ID | aflbdmaojedofngiigjpnlabhginodbf |
Offizielle URL | https://chromewebstore.google.com/detail/useful-forks/aflbdmaojedofngiigjpnlabhginodbf |
Beschreibung | To list GitHub forks ordered by stars, with additional information and automatic filtering of irrelevant ones. |
Dateigröße | 13.4 KB |
Installationsanzahl | 575 |
Aktuelle Version | 2.2.3 |
Letztes Update | 2023-08-03 |
Veröffentlichungsdatum | 2023-01-21 |
Bewertung | 5.00/5 Insgesamt 7 Bewertungen |
Entwickler | https://useful-forks.github.io |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://github.com/useful-forks/useful-forks.github.io/issues |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Useful Forks", "version": "2.2.3", "description": "To list GitHub forks ordered by stars, with additional information and automatic filtering of irrelevant ones.", "icons": { "16": "images\/useful-forks-16.png", "32": "images\/useful-forks-32.png", "48": "images\/useful-forks-48.png", "128": "images\/useful-forks-128.png" }, "host_permissions": [ "*:\/\/github.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*" ], "js": [ "useful-forks.js" ], "run_at": "document_idle", "all_frames": true } ] } |