NPM Files Explorer

Adds a button to browse files of a package on NPM

什麼是NPM Files Explorer?

NPM Files Explorer是由androz2091開發的Chrome擴展程式,該擴展的主要功能是“Adds a button to browse files of a package on NPM”。

擴展截圖

screenshot

下載NPM Files Explorer擴展crx文件

下載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
官方網址 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\/*"
            ]
        }
    ]
}