UNPKG

webextension-store-meta

Version:

Get browser extension(webextension) item meta from Chrome Web Store and Firefox add-ons.

94 lines (74 loc) 2.75 kB
<div align="center"> <p><img height="150" src="./logo.svg" alt="webextension-store-meta logo"></p> # webextension-store-meta [![Docs](https://img.shields.io/badge/Docs-read-%23fdf9f5)](https://awesome-webextension.github.io/webextension-store-meta/) [![npm-version](https://img.shields.io/npm/v/webextension-store-meta.svg)](https://www.npmjs.com/package/webextension-store-meta) [![Build Status](https://github.com/awesome-webextension/webextension-store-meta/actions/workflows/build.yml/badge.svg)](https://github.com/awesome-webextension/webextension-store-meta/actions/workflows/build.yml) [![Coverage Status](https://img.shields.io/coveralls/github/awesome-webextension/webextension-store-meta/main)](https://coveralls.io/github/awesome-webextension/webextension-store-meta?branch=main) </div> Get browser extension(webextension) item meta from Chrome Web Store and Firefox add-ons. This lib uses many fallback methods to improve stability and performance. ## Who Use It <table> <tbody> <tr> <td align="center"> <img width="198" height="58" src="https://raw.githubusercontent.com/badges/shields/master/readme-logo.svg?sanitize=true"> </td> <td align="center"> <img width="80" height="80" src="https://badgen.net/statics/badgen-logo.svg"> </td> </tr> <tr> <th align="center"> <a href="https://shields.io/">Shields.io</a> </th> <th align="center"> <a href="https://badgen.net/chrome-web-store">Badgen</a> </th> </tr> <tr> <td align="center"> Quality metadata badges <br>for open source projects </td> <td align="center"> Fast badge generating service </td> </tr> <tbody> </table> ## Installation npm ```bash npm add webextension-store-meta ``` ## Usage ```js const { ChromeWebStore } = require('webextension-store-meta/lib/chrome-web-store') const chromeWebStore = await ChromeWebStore.load({ id: 'xxxxxxx', qs: { hl: 'en' }, }) console.log(chromeWebStore.meta()) const { Amo } = require('webextension-store-meta/lib/amo') const amo = await Amo.load({ id: 'xxxxxxx' }) console.log(amo.meta()) ``` Get individual property: ```js const { Amo } = require('webextension-store-meta/lib/amo') const amo = await Amo.load({ id: 'xxxxxxx' }) console.log(amo.name()) console.log(amo.ratingValue()) ``` Load config: - **id** `{string}` _required_ - extension id. - **qs** `{string|object}` _optional_ - querystring. - **options** `object` _optional_ - [undici.fetch options](https://undici.nodejs.org/#/?id=undicifetchinput-init-promise). ## Development ```bash git clone https://github.com/awesome-webextension/webextension-store-meta.git cd webextension-store-meta pnpm i pnpm test ```