NPM Files Explorer

Adds a button to browse files of a package on NPM

What is NPM Files Explorer?

NPM Files Explorer is a Chrome extension developed by androz2091, and its main feature is "Adds a button to browse files of a package on NPM".

Extension Screenshots

screenshot

Download NPM Files Explorer Extension CRX File

Download NPM Files Explorer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name NPM Files Explorer NPM Files Explorer
ID mglfodcdihjmnkjdnkjjpfdlkadnfbii
Official URL https://chromewebstore.google.com/detail/npm-files-explorer/mglfodcdihjmnkjdnkjjpfdlkadnfbii
Description Adds a button to browse files of a package on NPM
File Size 472 KB
Installation Count 89
Current Version 1.0.1
Last Updated 2021-01-03
Publish Date 2020-12-23
Rating 5.00/5 Total 2 Ratings
Developer androz2091
Email [email protected]
Payment Type free
Help Page URL https://androz2091.fr/discord
Supported Languages 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\/*"
            ]
        }
    ]
}