NPM Files Explorer

Adds a button to browse files of a package on NPM

ما هو NPM Files Explorer؟

NPM Files Explorer هو إضافة Chrome تم تطويرها بواسطة androz2091، والميزة الرئيسية لها هي "Adds a button to browse files of a package on NPM".

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

screenshot

تحميل ملف CRX للإضافة NPM Files Explorer

قم بتنزيل ملفات الامتداد NPM Files Explorer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension adds a button on the pages of a package on npmjs.com. It allows you to explore the published files instead of using the git repository (which does not always correspond to the published files).                    

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

الاسم NPM Files Explorer NPM Files Explorer
ID mglfodcdihjmnkjdnkjjpfdlkadnfbii
عنوان URL الرسمي https://chromewebstore.google.com/detail/npm-files-explorer/mglfodcdihjmnkjdnkjjpfdlkadnfbii
الوصف Adds a button to browse files of a package on NPM
حجم الملف 472 KB
عدد التثبيتات 89
النسخة الحالية 1.0.1
آخر تحديث 2021-01-03
تاريخ النشر 2020-12-23
تقييم 5.00/5 مجموع تقييمات 2
المطور androz2091
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://androz2091.fr/discord
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NPM Files Explorer",
    "version": "1.0.1",
    "description": "Adds a button to browse files of a package on NPM",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "css": [
                "button.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.npmjs.com\/package\/*"
            ]
        }
    ]
}