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
公式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
Eメール [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\/*"
            ]
        }
    ]
}