npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

chrome-extension-meta

v0.0.8

Published

A Node.js package to fetch statistics from the Chrome Web Store

Downloads

284

Readme

chrome-extension-meta 🌐

简体中文 · English

Introduction 📜

chrome-extension-meta is a Node.js library designed to fetch essential details about extensions available on the Chrome Web Store. It offers programmatic access to various extension details such as name, approximate install count, user ratings, and more.

Key Features 🗝️

  • Get Extension Details: Retrieve detailed information about a specific extension by its ID.
  • QuickSearch and FullSearch: Quickly find extensions with partial data or perform comprehensive searches with detailed results.
  • Efficient Retrieval: Retrieve extension details using a single ID, an array of IDs, or through quick and full search functionalities.
  • JSON-Formatted Response: The API returns information in a well-structured JSON format for easy data processing.
  • Asynchronous Support: Supports asynchronous operations using async/await for a smooth development flow.

Installation 💿

To integrate chrome-extension-meta into your project, run the following command in your terminal:

npm install chrome-extension-meta

Usage 📊

Import the Module

Initialize the library in your JavaScript file.

const chromeStoreApi = require('chrome-extension-meta');

Fetching Details

Retrieve information for a single extension by its ID.

async function getExtensionDetails(extensionID) {
    try {
        const data = await chromeStoreApi.getExtensionDetails(extensionID);
        if (data.success) {
            console.log(data); // Log the extension details
        } else {
            console.error(data.error); // Handle errors
        }
    } catch (error) {
        console.error(error); // Handle exceptions
    }
}

// Example usage:
getExtensionDetails('gkkmiofalnjagdcjheckamobghglpdpm');

Fetching for Multiple IDs

Retrieve details for multiple extensions by passing an array of IDs.

async function getMultipleExtensionsDetails(extensionIDs) {
    try {
        const data = await chromeStoreApi.extMeta(extensionIDs);
        console.log(data); // Log details for each extension ID
    } catch (error) {
        console.error(error); // Handle exceptions
    }
}

// Example usage:
getMultipleExtensionsDetails(['gkkmiofalnjagdcjheckamobghglpdpm', 'cfidkbgamfhdgmedldkagjopnbobdmdn']);

QuickSearch

Quickly search for extensions using a query.

async function quickSearch(query) {
    try {
        const results = await chromeStoreApi.quickSearch(query);
        console.log(results); // Log the search results
    } catch (error) {
        console.error(error);
    }
}

// Example usage:
quickSearch('youtube');

//Example Reponse
{
  success: true,
  error: null,
  number: 10,
  data: [
    {
      name: 'Adblock for Youtube™',
      id: 'cmedhionkhpnakcndndgjdbohmhepckk',
      version: '1',
      iconURL: 'https://lh3.googleusercontent.com/bMu6IzWn8zG4yCpDcUrrTHA8bh5pVuAW706__3d2e6Lw_XwpqY3qxn_BfqUS3aaCTisvqFQIN1C9ac4Dm6s0Fz-vOg'
    },
    {
      name: 'Magic Actions for YouTube™',
      id: 'abjcfabbhafbcdfjoecdgepllmpfceif',
      version: '1',
      iconURL: 'https://lh3.googleusercontent.com/RZIl-KcDWp_GzAotuO4KZkfrDYMFyQm3yAT6v5k-BRshCIcegVon164qNmfS9DWWoX0nCBgg3_B_srbtQdxJzT_4PA'
    },
    {
      name: 'Return YouTube Dislike',
      id: 'gebbhagfogifgggkldgodflihgfeippi',
      version: '1',
      iconURL: 'https://lh3.googleusercontent.com/X0-M21C_VbWyXYuUjN55oyMDvOukjbzAxbs_WrUjwzsebWbyjFCIEchOtczI0DBvbyL9MUpuEWnghm19gF6dp8Vriw'
    },
    //..
  ]}

FullSearch

Perform a comprehensive search to get detailed information about extensions.

async function fullSearch(query, count) {
    try {
        const results = await chromeStoreApi.fullSearch(query, {
          limit:count
        });
        console.log(results); // Log the detailed search results
    } catch (error) {
        console.error(error);
    }
}

// Example usage:
fullSearch('tiktok', 10);


// Example Response
{
  success: true,
  error: null,
  number: 11,
  data: [
    [
  {
    id: 'ofpnmcalabcbjgholdjcjblkibolbppb',
    iconURL: 'https://lh3.googleusercontent.com/rLhEeo6TgST5H4WmCNWKO4fDJDvZVGfoXJNt035pGtnamBRJenmcXhqiI3RvZbRM71LWlQkTL6B825XzbAwAx52c9Q',
    title: 'Monica - Your AI Copilot powered by ChatGPT4',
    rating: '4.901862789641072',
    reviewCount: '15407',
    coverURL: 'https://lh3.googleusercontent.com/qlN70mLwKZnfWS8U51LGosEj1fOaF3gt_q5PDfN2HalyTpO2Dxh997y4CoZWE1N7oW3ISP9Y0ZxyUlrrTxJmHLaFbQ',
    description: 'Your AI Copilot powered by GPT-4. Answers complex questions. Writes emails reads articles searches smartly. Usable everywhere.',
    publish: 'monica.im',
    ifEstablish: 'true',
    ifFeatured: 'true',
    category: 'productivity/tools',
    categoryNo: '5',
    userCount: '2000000'
  },
  {
    id: 'pmbmfhhbllfiifceolpogjoagoiollkc',
    iconURL: 'https://lh3.googleusercontent.com/HdWI7e2ftmvKA6tmnW7Cyhlq3pkA_hrjWih2I7kBAWbbEIhoVTYsn-hAO1AJNFvVY2wH0KOZb4ZVLUv8PtmDtXV-wQ',
    title: 'Monica Search - New Tab for AI Search',
    rating: '3.9047619047619047',
    reviewCount: '21',
    coverURL: 'https://lh3.googleusercontent.com/MtbY2KnnR_3RJi6y5-VHVST_ht4B9GnQQpWbvVdWEdIVFCcOyMj1ba8XMiJ9YNI6Yy_vOFTs9abNtCk2BnZ_5pOJp-o',
    description: 'Experience the free unlimited search capabilities of ChatGPT!',
    publish: 'monica.im',
    ifEstablish: 'true',
    ifFeatured: 'null',
    category: 'productivity/workflow',
    categoryNo: '4',
    userCount: '10000'
  },
  {
    id: 'kbhaffhbhcfmogkkbfanilniagcefnhi',
    iconURL: 'https://lh3.googleusercontent.com/_WjLv3duUHKMcxhNLvh8F8foITtjesi4Z0YvZIb0C1HXzgz83oTqs-qMi_Fzz0vl5AkElbjjYPuztLnQEyvL-_cXsA',
    title: 'Jarvis AI: Chat GPT Bing Claude Bard Grok',
    rating: '4.923705722070845',
    reviewCount: '367',
    coverURL: 'https://lh3.googleusercontent.com/M6xkr64CgaD0MriN4DF8VN3ngKCt_Vygqaj4jC2ffDmnKRC-M_z2D97mldC-4UAepPKGLQvIgqih61JC3GH6I3HD',
    description: 'Jarvis AI Copilot Chatbot by ChatGPT quillbot Grok Jasper Xai to write email better grammar checker \\u0026 spelling mail enhancer',
    publish: 'jarvis.cx',
    ifEstablish: 'true',
    ifFeatured: 'true',
    category: 'productivity/tools',
    categoryNo: '5',
    userCount: '6000'
  }
  //...
]
}

Full Search Options

iterface SearchOptions {
    limit?: number; // Number of results to return
    minRating?: number; // Minimum rating value
    ifFeatured?: boolean; // If the extension is featured by Chrome
    ifWellKnown?: boolean; // If the extension is made by a well-known developer
}

Returned Data Structure 📐

Single Extension ID

{
  "success": true,
  "error": false,
  "name": "YouTube Picture-in-Picture",
  "installCount": "12,651",
  "ratingCount": 158,
  "ratingValue": 4.55
}

Multiple Extension IDs

An object is returned with each key as an extension ID, and the value is the respective data structure.

Field Descriptions

| Field | Description | | --------------------- | -------------------------------------------------------------------- | | success | Indicates successful retrieval. | | error | Provides error information if applicable. | | name | The name of the extension. | | installCount | Approximate install count as a string. | | ratingCount | The number of user ratings. | | ratingValue | The average user rating. | | description | A brief description of the extension. | | iconUrl | The URL to the extension's icon. | | coverUrl | The URL to the extension's cover image. | | detailUrl | The URL to the extension's detail page. | | detailedDescription | A more comprehensive description of the extension. | | additionalImages | An array of URLs to additional images associated with the extension. | | version | The current version of the extension. | | offeredBy | The provider of the extension. | | updated | The last update timestamp. | | size | The size of the extension. | | languages | Languages supported by the extension. | | developer | The name of the developer. | | email | The developer's contact email. | | websiteUrl | The developer's website. | | privacyPolicyUrl | The URL to the developer's privacy policy. |

Notes 📝

  • The installCount field provides an approximation and may not reflect the exact number of installations.
  • Due to potential changes in the Chrome Web Store's HTML structure, regular expression patterns may need to be updated to ensure accurate data extraction.

Recommendations 🔍

  • For production environments, consider implementing caching to enhance performance and minimize API calls.

Caveats ⚠️

  • Install Count Accuracy: Following updates to the Google Web Store, the exact install count is no longer available. The API provides an approximate string value (e.g., "41,678+").
  • Data Extraction: The library uses regular expressions for data extraction, which may require updates if the Chrome Web Store's HTML structure changes.

Author 👤

River ([email protected])

GitHub Repository 📦

For more information and to contribute, visit the GitHub repository: leizhenpeng/chrome-extension-meta