NPM Search & Update

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

ما هو NPM Search & Update؟

NPM Search & Update هو إضافة Chrome تم تطويرها بواسطة ManualsRepo.com، والميزة الرئيسية لها هي "NPM Search & Update, type 'npm' plus your package name into the url bar".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة NPM Search & Update

قم بتنزيل ملفات الامتداد NPM Search & Update بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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                    

معلومات أساسية عن التمديد

الاسم 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
عنوان صفحة سياسة الخصوصية 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\/"
}