NPM Search & Update
NPM Search & Update, type 'npm' plus your package name into the url bar
NPM Search & Update là gì?
NPM Search & Update là một tiện ích mở rộng Chrome được phát triển bởi ManualsRepo.com, và tính năng chính của nó là "NPM Search & Update, type 'npm' plus your package name into the url bar".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng NPM Search & Update
Tải xuống các tệp mở rộng NPM Search & Update dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | kagpoplamlmaonpddimnnigiojimihnh |
URL Chính Thức | https://chrome.google.com/webstore/detail/npm-search-update/kagpoplamlmaonpddimnnigiojimihnh |
Mô tả | NPM Search & Update, type 'npm' plus your package name into the url bar |
Kích Thước Tệp | 31.2 KB |
Số Lần Cài Đặt | 126 |
Phiên Bản Hiện Tại | 0.0.9 |
Cập Nhật Lần Cuối | 2020-01-27 |
Ngày Phát Hành | 2020-01-27 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | ManualsRepo.com |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://docs.google.com/document/d/1Z1s5lAe0i8UuhcU0s9DVsm3gVjYlyaLNUzRYsLmzGFg/edit?usp=sharing |
Ngôn Ngữ Được Hỗ Trợ | 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\/" } |