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”。
扩展截图
下载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 |
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\/*" ] } ] } |