NPM Files Explorer
Adds a button to browse files of a package on NPM
Was ist NPM Files Explorer?
NPM Files Explorer ist eine Chrome-Erweiterung, die von androz2091 entwickelt wurde, und ihr Hauptmerkmal ist "Adds a button to browse files of a package on NPM".
Erweiterungsscreenshots
NPM Files Explorer-Erweiterungs-CRX-Datei herunterladen
Laden Sie NPM Files Explorer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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). Grundlegende Informationen zur Erweiterung
| Name | |
| ID | mglfodcdihjmnkjdnkjjpfdlkadnfbii |
| Offizielle URL | https://chromewebstore.google.com/detail/npm-files-explorer/mglfodcdihjmnkjdnkjjpfdlkadnfbii |
| Beschreibung | Adds a button to browse files of a package on NPM |
| Dateigröße | 472 KB |
| Installationsanzahl | 89 |
| Aktuelle Version | 1.0.1 |
| Letztes Update | 2021-01-03 |
| Veröffentlichungsdatum | 2020-12-23 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | androz2091 |
| [email protected] | |
| Zahlungsart | free |
| Hilfeseite URL | https://androz2091.fr/discord |
| Unterstützte Sprachen | 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\/*"
]
}
]
} | |