Active Forks
Show Active Forks for any GitHub project.
Cos'è Active Forks?
Active Forks è un'estensione di Chrome sviluppata da ridvaltun, e la sua funzione principale è "Show Active Forks for any GitHub project.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Active Forks
Scarica i file di estensione Active Forks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension allows you to find the most active forks of a repository. Informazioni di Base sull'Estensione
| Nome | |
| ID | kicchcnkocbmnmlpmjoojinofkagcjpi |
| URL Ufficiale | https://chromewebstore.google.com/detail/active-forks/kicchcnkocbmnmlpmjoojinofkagcjpi |
| Descrizione | Show Active Forks for any GitHub project. |
| Dimensione del File | 32.13 KB |
| Conteggio Installazioni | 36 |
| Versione Corrente | 1.0.1 |
| Ultimo Aggiornamento | 2021-06-23 |
| Data di Pubblicazione | 2020-10-15 |
| Sviluppatore | ridvaltun |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/ridvanaltun/active-forks-extension |
| URL della Pagina di Aiuto | https://github.com/ridvanaltun/active-forks-extension |
| Lingue Supportate | 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"
]
} | |