''Yarn'' on the Node Package Manager
The extension replaces ''npm i'' with ''yarn add'', on the npmjs website
''Yarn'' on the Node Package Manager란 무엇입니까?
''Yarn'' on the Node Package Manager은(는) Water에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The extension replaces ''npm i'' with ''yarn add'', on the npmjs website"입니다.
확장 프로그램 스크린샷
''Yarn'' on the Node Package Manager 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The extension changes the Copying Area, on the npmjs website, so by clicking on it - you will copy ''yarn add Package'' After right-clicking on the extension icon, you can: 1. Fast open npmjs site 2. Remove the extension icon 3. Top secret cookie button, but I didn't tell you that, right? The extension contains: 1. Transitions to the NpmJs site from the context menu 2. Additional styles for notifications and area (blue yarn colors) 3. Cookies in the context menu 4. Support Russian and English #yarn #npmjs Replace "npm install" with "yarn add"
확장 프로그램 기본 정보
이름 | ''Yarn'' on the Node Package Manager |
ID | ckbdocnibplmjbbhfkocgjmcnellplpo |
공식 URL | https://chromewebstore.google.com/detail/yarn-on-the-node-package/ckbdocnibplmjbbhfkocgjmcnellplpo |
설명 | The extension replaces ''npm i'' with ''yarn add'', on the npmjs website |
파일 크기 | 40.75 KB |
설치 횟수 | 25 |
현재 버전 | 0.1.0 |
최근 업데이트 | 2023-12-10 |
출시 날짜 | 2020-10-05 |
개발자 | Water |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "''Yarn'' on the Node Package Manager", "short_name": "NTY", "description": "__MSG_manifest_description__", "version": "0.1.0", "background": { "service_worker": "js\/background.js" }, "action": { "default_title": "__MSG_manifest_title__", "default_icon": "icons\/icon32.png" }, "icons": { "32": "icons\/icon32.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.npmjs.com\/*" ], "css": [ "css\/content_style.css" ], "js": [ "libs\/jquery.min.js", "js\/content_script.js" ], "run_at": "document_start" } ], "permissions": [ "contextMenus", "tabs" ], "manifest_version": 3, "default_locale": "en" } |