NPM Files Explorer

Adds a button to browse files of a package on NPM

Apa itu NPM Files Explorer?

NPM Files Explorer adalah ekstensi Chrome yang dikembangkan oleh androz2091, dan fitur utamanya adalah "Adds a button to browse files of a package on NPM".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi NPM Files Explorer

Unduh file ekstensi NPM Files Explorer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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).                    

Informasi Dasar Ekstensi

Nama NPM Files Explorer NPM Files Explorer
ID mglfodcdihjmnkjdnkjjpfdlkadnfbii
URL Resmi https://chromewebstore.google.com/detail/npm-files-explorer/mglfodcdihjmnkjdnkjjpfdlkadnfbii
Deskripsi Adds a button to browse files of a package on NPM
Ukuran File 472 KB
Jumlah Instalasi 89
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2021-01-03
Tanggal Publikasi 2020-12-23
Penilaian 5.00/5 Total 2 Penilaian
Pengembang androz2091
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://androz2091.fr/discord
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}