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.
Description
The
chromeExtensionsquery onqueue.wxt.dev/apireturnsnullfor every Chrome extension ID. This means the homepage showcase ("Using WXT" section) shows only Firefox data — no Chrome links, user counts, or ratings.The
firefoxAddonsquery works correctly.Steps to reproduce
Impact
chromeId(nofirefoxSlug) are completely missing from the showcaseExpected behavior
chromeExtensionsshould return extension metadata (name, icon, users, rating, storeUrl) the same wayfirefoxAddonsdoes.