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”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载NPM Search & Update扩展crx文件

下载NPM Search & Update扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 NPM Search & Update NPM Search & Update
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\/"
}