Active Forks
Show Active Forks for any GitHub project.
Wat is Active Forks?
Active Forks is een Chrome-extensie ontwikkeld door ridvaltun, en de belangrijkste functie is "Show Active Forks for any GitHub project.".
Extensie Screenshots
Download het CRX-bestand van de extensie Active Forks
Download Active Forks-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension allows you to find the most active forks of a repository.
Basisinformatie over de Extensie
Naam | Active Forks |
ID | kicchcnkocbmnmlpmjoojinofkagcjpi |
Officiële URL | https://chromewebstore.google.com/detail/active-forks/kicchcnkocbmnmlpmjoojinofkagcjpi |
Beschrijving | Show Active Forks for any GitHub project. |
Bestandsgrootte | 32.13 KB |
Aantal Installaties | 36 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2021-06-23 |
Publicatiedatum | 2020-10-15 |
Ontwikkelaar | ridvaltun |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/ridvanaltun/active-forks-extension |
Help Pagina-URL | https://github.com/ridvanaltun/active-forks-extension |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Active Forks", "short_name": "Active Forks", "version": "1.0.1", "description": "Show Active Forks for any GitHub project.", "icons": { "16": "icons\/active-forks-logo-16.png", "48": "icons\/active-forks-logo-48.png", "128": "icons\/active-forks-logo.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.github.com\/*", "*:\/\/*.ridvanaltun.github.io\/active-forks*" ], "js": [ "dist\/bundles\/activeforks.bundle.js" ] } ], "browser_action": { "default_icon": { "16": "icons\/active-forks-logo-16.png", "48": "icons\/active-forks-logo-48.png", "128": "icons\/active-forks-logo.png" }, "default_title": "Active Forks" }, "background": { "scripts": [ "dist\/bundles\/background.bundle.js" ] }, "options_ui": { "page": "src\/options\/options.html" }, "permissions": [ "activeTab", "storage" ] } |