NPM Search & Update

NPM Search & Update, type 'npm' plus your package name into the url bar

Qu'est-ce que NPM Search & Update ?

NPM Search & Update est une extension Chrome développée par ManualsRepo.com, et sa fonction principale est "NPM Search & Update, type 'npm' plus your package name into the url bar".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension NPM Search & Update

Téléchargez les fichiers d'extension NPM Search & Update au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom NPM Search & Update NPM Search & Update
ID kagpoplamlmaonpddimnnigiojimihnh
URL Officiel https://chrome.google.com/webstore/detail/npm-search-update/kagpoplamlmaonpddimnnigiojimihnh
Description NPM Search & Update, type 'npm' plus your package name into the url bar
Taille du Fichier 31.2 KB
Nombre d'Installations 126
Version Actuelle 0.0.9
Dernière Mise à Jour 2020-01-27
Date de Publication 2020-01-27
Évaluation 5.00/5 Total 2 Évaluations
Développeur ManualsRepo.com
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://docs.google.com/document/d/1Z1s5lAe0i8UuhcU0s9DVsm3gVjYlyaLNUzRYsLmzGFg/edit?usp=sharing
Langues Prises en Charge 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\/"
}