npm faves

Manage your favorite node packages

npm faves क्या है?

npm faves npm.faves द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Manage your favorite node packages"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में npm faves एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम npm faves npm faves
ID lgcedkogdjoickahfdegicgmbkloaaem
आधिकारिक URL https://chromewebstore.google.com/detail/npm-faves/lgcedkogdjoickahfdegicgmbkloaaem
विवरण Manage your favorite node packages
फ़ाइल का आकार 103 KB
स्थापना संख्या 56
वर्तमान संस्करण 1.5.3
अंतिम अपडेट 2024-02-11
प्रकाशन तिथि 2021-06-08
रेटिंग 4.80/5 कुल 5 रेटिंग्स
डेवलपर npm.faves
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/tulu/chrome-extension-npm-faves
समर्थित भाषाएँ 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\/*"
    ]
}