NPM Search & Update
NPM Search & Update, type 'npm' plus your package name into the url bar
NPM Search & Update란 무엇입니까?
NPM Search & Update은(는) ManualsRepo.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "NPM Search & Update, type 'npm' plus your package name into the url bar"입니다.
확장 프로그램 스크린샷
NPM Search & Update 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
NPM Search & Update providing a search for NodeJS packages and monitor changes from the npm registry Features: ★ Help developer search dependencies at npmjs.com quickly with short typing. eg: Type 'npm' plus your package name into the url bar and enter. It's take you go to npmjs search page. ★ Providing a search for package dependency and monitor changes from the npm registry. ★ Custom alarm notifications ★ Notify you when dependencies update #Changelog VERSION 0.0.9, 2020-01-25 - Fix duplicate action button on npmjs site
확장 프로그램 기본 정보
이름 | |
ID | kagpoplamlmaonpddimnnigiojimihnh |
공식 URL | https://chrome.google.com/webstore/detail/npm-search-update/kagpoplamlmaonpddimnnigiojimihnh |
설명 | NPM Search & Update, type 'npm' plus your package name into the url bar |
파일 크기 | 31.2 KB |
설치 횟수 | 126 |
현재 버전 | 0.0.9 |
최근 업데이트 | 2020-01-27 |
출시 날짜 | 2020-01-27 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | ManualsRepo.com |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://docs.google.com/document/d/1Z1s5lAe0i8UuhcU0s9DVsm3gVjYlyaLNUzRYsLmzGFg/edit?usp=sharing |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NPM Search & Update", "short_name": "NPM Search", "icons": { "16": "icons\/npm-16.png", "64": "icons\/npm-64.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.npmjs.com\/package\/*" ], "js": [ "contentScript.js" ], "css": [ "styles.css" ] } ], "browser_action": { "default_title": "NPM Search" }, "omnibox": { "keyword": "npm" }, "manifest_version": 2, "permissions": [ "*:\/\/*\/*", "storage", "alarms", "notifications" ], "author": "NPM Search", "version": "0.0.9", "description": "NPM Search & Update, type 'npm' plus your package name into the url bar", "homepage_url": "https:\/\/www.npmjs.com\/" } |