npm faves

Manage your favorite node packages

Apa itu npm faves?

npm faves adalah ekstensi Chrome yang dikembangkan oleh npm.faves, dan fitur utamanya adalah "Manage your favorite node packages".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi npm faves

Unduh file ekstensi npm faves 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

                        Manage your favorite node packages directly from the browser!

npm faves allows you to add packages from https://www.npmjs.com/ and access all its details including the option to copy the install snippet from the pop up.

Now it's easier to save the packages you always use to develop all in one place. Also you can save packages to try later without forgetting about them.

Create packages collections for your type of Node applications, add the dependencies easily and download the package.json file as a template to start your project.

Please note that npm faves it's not synchronized with the stars from npm CLI (for now)

npm faves it's open source and contribution is more than welcome!                    

Informasi Dasar Ekstensi

Nama npm faves npm faves
ID lgcedkogdjoickahfdegicgmbkloaaem
URL Resmi https://chromewebstore.google.com/detail/npm-faves/lgcedkogdjoickahfdegicgmbkloaaem
Deskripsi Manage your favorite node packages
Ukuran File 103 KB
Jumlah Instalasi 56
Versi Saat Ini 1.5.3
Terakhir Diperbarui 2024-02-11
Tanggal Publikasi 2021-06-08
Penilaian 4.80/5 Total 5 Penilaian
Pengembang npm.faves
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/tulu/chrome-extension-npm-faves
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "npm faves",
    "description": "Manage your favorite node packages",
    "version": "1.5.3",
    "manifest_version": 3,
    "background": {
        "service_worker": ".\/service-worker.js"
    },
    "permissions": [
        "storage",
        "tabs",
        "clipboardWrite"
    ],
    "action": {
        "default_popup": ".\/views\/popup-main.html",
        "default_title": "npm faves",
        "default_icon": {
            "16": "\/images\/npm-faves-logo-16.png",
            "32": "\/images\/npm-faves-logo-32.png",
            "48": "\/images\/npm-faves-logo-48.png",
            "128": "\/images\/npm-faves-logo-128.png"
        }
    },
    "icons": {
        "16": "\/images\/npm-faves-logo-16.png",
        "32": "\/images\/npm-faves-logo-32.png",
        "48": "\/images\/npm-faves-logo-48.png",
        "128": "\/images\/npm-faves-logo-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.npmjs.com\/package\/*"
            ],
            "all_frames": true,
            "js": [
                ".\/scripts\/npm-faves.core.min.js",
                ".\/scripts\/content-script.js"
            ],
            "css": [
                ".\/styles\/npm-faves.ui.min.css"
            ]
        }
    ],
    "options_page": ".\/views\/options.html",
    "host_permissions": [
        "https:\/\/registry.npmjs.org\/*"
    ]
}