NPM Files Explorer
Adds a button to browse files of a package on NPM
Co to jest NPM Files Explorer?
NPM Files Explorer to rozszerzenie Chrome opracowane przez androz2091, a jego główną funkcją jest „Adds a button to browse files of a package on NPM”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia NPM Files Explorer
Pobierz pliki rozszerzeń NPM Files Explorer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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).
Podstawowe informacje o rozszerzeniu
Nazwa | NPM Files Explorer |
ID | mglfodcdihjmnkjdnkjjpfdlkadnfbii |
Oficjalny URL | https://chromewebstore.google.com/detail/npm-files-explorer/mglfodcdihjmnkjdnkjjpfdlkadnfbii |
Opis | Adds a button to browse files of a package on NPM |
Rozmiar pliku | 472 KB |
Liczba instalacji | 89 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2021-01-03 |
Data Publikacji | 2020-12-23 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | androz2091 |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://androz2091.fr/discord |
Obsługiwane Języki | 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\/*" ] } ] } |