Github Active Forks

Adds an active forks section on a Github Page

Cos'è Github Active Forks?

Github Active Forks è un'estensione di Chrome sviluppata da yashx, e la sua funzione principale è "Adds an active forks section on a Github Page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Github Active Forks

Scarica i file di estensione Github 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Github Active Forks Github Active Forks
ID oflkkabfokadmncdbhdggeedngllccak
URL Ufficiale https://chromewebstore.google.com/detail/github-active-forks/oflkkabfokadmncdbhdggeedngllccak
Descrizione Adds an active forks section on a Github Page
Dimensione del File 170 KB
Conteggio Installazioni 177
Versione Corrente 0.0.3
Ultimo Aggiornamento 2022-03-19
Data di Pubblicazione 2021-08-19
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore yashx
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/yashx/github-active-forks
URL della Pagina della Politica sulla Privacy https://sites.google.com/view/yashx/privacy-policy
Lingue Supportate 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"
    }
}