npm faves

Manage your favorite node packages

npm faves là gì?

npm faves là một tiện ích mở rộng Chrome được phát triển bởi npm.faves, và tính năng chính của nó là "Manage your favorite node packages".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng npm faves

Tải xuống các tệp mở rộng npm faves dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên npm faves npm faves
ID lgcedkogdjoickahfdegicgmbkloaaem
URL Chính Thức https://chromewebstore.google.com/detail/npm-faves/lgcedkogdjoickahfdegicgmbkloaaem
Mô tả Manage your favorite node packages
Kích Thước Tệp 103 KB
Số Lần Cài Đặt 56
Phiên Bản Hiện Tại 1.5.3
Cập Nhật Lần Cuối 2024-02-11
Ngày Phát Hành 2021-06-08
Đánh Giá 4.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển npm.faves
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tulu/chrome-extension-npm-faves
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}