NPM Files Explorer

Adds a button to browse files of a package on NPM

NPM Files Explorer là gì?

NPM Files Explorer là một tiện ích mở rộng Chrome được phát triển bởi androz2091, và tính năng chính của nó là "Adds a button to browse files of a package on NPM".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng NPM Files Explorer

Tải xuống các tệp mở rộng NPM Files Explorer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên NPM Files Explorer NPM Files Explorer
ID mglfodcdihjmnkjdnkjjpfdlkadnfbii
URL Chính Thức https://chromewebstore.google.com/detail/npm-files-explorer/mglfodcdihjmnkjdnkjjpfdlkadnfbii
Mô tả Adds a button to browse files of a package on NPM
Kích Thước Tệp 472 KB
Số Lần Cài Đặt 89
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-01-03
Ngày Phát Hành 2020-12-23
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển androz2091
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://androz2091.fr/discord
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}