github npm stats

Displays npm package stats on GitHub

Cos'è github npm stats?

github npm stats è un'estensione di Chrome sviluppata da katranci, e la sua funzione principale è "Displays npm package stats on GitHub".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione github npm stats

Scarica i file di estensione github npm stats 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

                        About Permissions
==============
- Data access for github.com is required to access package.json file of the underlying project
- Data access for npmjs.org is required to access npm package details
- Storage is required to cache github and npm api responses

Source Code
==========
You can view the source code of this extension on https://github.com/katranci/github-npm-stats                    

Informazioni di Base sull'Estensione

Nome github npm stats github npm stats
ID oomfflokggoffaiagenekchfnpighcef
URL Ufficiale https://chromewebstore.google.com/detail/github-npm-stats/oomfflokggoffaiagenekchfnpighcef
Descrizione Displays npm package stats on GitHub
Dimensione del File 65.86 KB
Conteggio Installazioni 621
Versione Corrente 1.3.4
Ultimo Aggiornamento 2020-05-31
Data di Pubblicazione 2020-05-31
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore katranci
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/katranci/github-npm-stats
URL della Pagina di Aiuto https://github.com/katranci/github-npm-stats/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "github npm stats",
    "version": "1.3.4",
    "manifest_version": 2,
    "description": "Displays npm package stats on GitHub",
    "author": "Ahmet Katranc\u0131 ",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "https:\/\/*.npmjs.org\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "chart.min.js",
                "bundle.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}