NPM Files Explorer

Adds a button to browse files of a package on NPM

Cos'è NPM Files Explorer?

NPM Files Explorer è un'estensione di Chrome sviluppata da androz2091, e la sua funzione principale è "Adds a button to browse files of a package on NPM".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione NPM Files Explorer

Scarica i file di estensione NPM Files Explorer 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 adds a button on the pages of a package on npmjs.com. It allows you to explore the published files instead of using the git repository (which does not always correspond to the published files).                    

Informazioni di Base sull'Estensione

Nome NPM Files Explorer NPM Files Explorer
ID mglfodcdihjmnkjdnkjjpfdlkadnfbii
URL Ufficiale https://chromewebstore.google.com/detail/npm-files-explorer/mglfodcdihjmnkjdnkjjpfdlkadnfbii
Descrizione Adds a button to browse files of a package on NPM
Dimensione del File 472 KB
Conteggio Installazioni 89
Versione Corrente 1.0.1
Ultimo Aggiornamento 2021-01-03
Data di Pubblicazione 2020-12-23
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore androz2091
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://androz2091.fr/discord
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NPM Files Explorer",
    "version": "1.0.1",
    "description": "Adds a button to browse files of a package on NPM",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "css": [
                "button.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.npmjs.com\/package\/*"
            ]
        }
    ]
}