NPM Files Explorer
Adds a button to browse files of a package on NPM
Что такое NPM Files Explorer?
NPM Files Explorer - это расширение Chrome, разработанное androz2091, и его основная функция - "Adds a button to browse files of a package on NPM".
Снимки экрана расширения
Скачать файл CRX расширения NPM Files Explorer
Скачайте файлы расширений 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\/*" ] } ] } |