github npm stats

Displays npm package stats on GitHub

Was ist github npm stats?

github npm stats ist eine Chrome-Erweiterung, die von katranci entwickelt wurde, und ihr Hauptmerkmal ist "Displays npm package stats on GitHub".

Erweiterungsscreenshots

screenshot
screenshot

github npm stats-Erweiterungs-CRX-Datei herunterladen

Laden Sie github npm stats-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name github npm stats github npm stats
ID oomfflokggoffaiagenekchfnpighcef
Offizielle URL https://chromewebstore.google.com/detail/github-npm-stats/oomfflokggoffaiagenekchfnpighcef
Beschreibung Displays npm package stats on GitHub
Dateigröße 65.86 KB
Installationsanzahl 621
Aktuelle Version 1.3.4
Letztes Update 2020-05-31
Veröffentlichungsdatum 2020-05-31
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler katranci
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/katranci/github-npm-stats
Hilfeseite URL https://github.com/katranci/github-npm-stats/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}