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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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\/*"
            ]
        }
    ]
}