NPM Files Explorer
Adds a button to browse files of a package on NPM
Vad är NPM Files Explorer?
NPM Files Explorer är en Chrome-tillägg utvecklad av androz2091, och dess huvudfunktion är "Adds a button to browse files of a package on NPM".
Tilläggsskärmbilder
Ladda ner NPM Files Explorer-förlängningens CRX-fil
Ladda ner NPM Files Explorer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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). Grundläggande Information om Tillägg
| Namn | |
| ID | mglfodcdihjmnkjdnkjjpfdlkadnfbii |
| Officiell webbadress | https://chromewebstore.google.com/detail/npm-files-explorer/mglfodcdihjmnkjdnkjjpfdlkadnfbii |
| Beskrivning | Adds a button to browse files of a package on NPM |
| Filstorlek | 472 KB |
| Antal Installationer | 89 |
| Aktuell Version | 1.0.1 |
| Senast Uppdaterad | 2021-01-03 |
| Publiceringsdatum | 2020-12-23 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | androz2091 |
| E-post | [email protected] |
| Betalningssätt | free |
| Hjälpsida URL | https://androz2091.fr/discord |
| Stödda Språk | 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\/*"
]
}
]
} | |