Skip to content

Homepage showcase: chromeExtensions API returns null for all IDs #2277

@shadoath

Description

@shadoath

Description

The chromeExtensions query on queue.wxt.dev/api returns null for every Chrome extension ID. This means the homepage showcase ("Using WXT" section) shows only Firefox data — no Chrome links, user counts, or ratings.

The firefoxAddons query works correctly.

Steps to reproduce

# Chrome — returns null for every ID tested
curl -s 'https://queue.wxt.dev/api' \
  -H 'Content-Type: application/json' \
  -d '{"query":"{ chromeExtensions(ids: [\"hmdcmlfkchdmnmnmheododdhjedfccka\", \"elfaihghhjjoknimpccccmkioofjjfkf\", \"pdnenlnelpdomajfejgapbdpmjkfpjkp\"]) { id name users } }"}'
# → { "data": { "chromeExtensions": [null, null, null] } }

# Firefox — works fine
curl -s 'https://queue.wxt.dev/api' \
  -H 'Content-Type: application/json' \
  -d '{"query":"{ firefoxAddons(ids: [\"github-better-line-counts\"]) { slug name users } }"}'
# → returns valid data

Impact

  • Extensions that only have a chromeId (no firefoxSlug) are completely missing from the showcase
  • Extensions with both stores only show Firefox stats and a Firefox link — Chrome link is absent
  • User counts are understated (missing Chrome users)

Expected behavior

chromeExtensions should return extension metadata (name, icon, users, rating, storeUrl) the same way firefoxAddons does.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions