unpkg Link
Adds a link to unpkg.com for packages on npmjs.org
unpkg Link란 무엇입니까?
unpkg Link은(는) Andrew Levine에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a link to unpkg.com for packages on npmjs.org"입니다.
확장 프로그램 스크린샷
unpkg Link 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Want to explore the actual code published for an npm package, without installing it locally? The unpkg.com service makes this a breeze. This extension simply adds a link to packages on npmjs.org, with a quick link to view the code on unpkg.com. Credits go to both the npm team, and Michael Jackson for npmcdn.
확장 프로그램 기본 정보
이름 | ![]() |
ID | edafhclpiklopbghoeoefdajoadokdcb |
공식 URL | https://chrome.google.com/webstore/detail/unpkg-link/edafhclpiklopbghoeoefdajoadokdcb |
설명 | Adds a link to unpkg.com for packages on npmjs.org |
파일 크기 | 3.25 KB |
설치 횟수 | 119 |
현재 버전 | 2.0.0 |
최근 업데이트 | 2018-05-01 |
출시 날짜 | 2018-05-01 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | Andrew Levine |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/DrewML/npmcdn-link |
도움말 페이지 URL | https://github.com/DrewML/npmcdn-link/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "unpkg Link", "version": "2.0.0", "description": "Adds a link to unpkg.com for packages on npmjs.org", "homepage_url": "https:\/\/github.com\/DrewML\/unpkg-link", "manifest_version": 2, "minimum_chrome_version": "49", "permissions": [ "https:\/\/www.npmjs.com\/package\/*" ], "content_scripts": [ { "run_at": "document_idle", "matches": [ "https:\/\/www.npmjs.com\/package\/*" ], "js": [ "index.js" ] } ] } |