Github Active Forks
Adds an active forks section on a Github Page
Hvad er Github Active Forks?
Github Active Forks er en Chrome-udvidelse udviklet af yashx, og dens hovedfunktion er "Adds an active forks section on a Github Page".
Udvidelsesskærmbilleder
Download Github Active Forks-udvidelses-CRX-fil
Download Github Active Forks-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Open Source Chrome Extension that adds an active forks section on a Github Repository Page Repo: https://github.com/yashx/github-active-forks Features 1. Select the number of forks you want to see. (Min 1 and Max 100) 2. Sort forks of the repository by most stared, last commit or most sub forks. 3. No additional Github API calls are made when the above mentioned options are changed so you can modify them without worrying about rate limits.
Grundlæggende oplysninger om udvidelsen
Navn | Github Active Forks |
ID | oflkkabfokadmncdbhdggeedngllccak |
Officiel URL | https://chromewebstore.google.com/detail/github-active-forks/oflkkabfokadmncdbhdggeedngllccak |
Beskrivelse | Adds an active forks section on a Github Page |
Filstørrelse | 170 KB |
Antal Installationer | 177 |
Nuværende Version | 0.0.3 |
Senest Opdateret | 2022-03-19 |
Udgivelsesdato | 2021-08-19 |
Bedømmelse | 4.00/5 Samlet 1 Bedømmelser |
Udvikler | yashx |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/yashx/github-active-forks |
URL til Fortrolighedspolitik Side | https://sites.google.com/view/yashx/privacy-policy |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Active Forks", "description": "Adds an active forks section on a Github Page", "version": "0.0.3", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*" ], "js": [ "content-script.js" ] } ], "permissions": [ "storage" ], "action": { "default_popup": "popup_options.html", "default_icon": { "16": ".\/images\/logo-16.png", "32": ".\/images\/logo-32.png", "48": ".\/images\/logo-48.png", "128": ".\/images\/logo-128.png" } }, "background": { "service_worker": "background.js" }, "icons": { "16": ".\/images\/logo-16.png", "32": ".\/images\/logo-32.png", "48": ".\/images\/logo-48.png", "128": ".\/images\/logo-128.png" } } |