npm faves
Manage your favorite node packages
npm faves란 무엇입니까?
npm faves은(는) npm.faves에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Manage your favorite node packages"입니다.
확장 프로그램 스크린샷
npm faves 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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\/*" ] } |