npm faves
Manage your favorite node packages
什麼是npm faves?
npm faves是由npm.faves開發的Chrome擴展程式,該擴展的主要功能是“Manage your favorite node packages”。
擴展截圖
下載npm faves擴展crx文件
下載npm faves擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | lgcedkogdjoickahfdegicgmbkloaaem |
官方網址 | 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\/*" ] } |