Skip to content

feat: Add support for getting edge extensions by CRX ID#7

Merged
aklinker1 merged 2 commits intomainfrom
edge
Apr 11, 2026
Merged

feat: Add support for getting edge extensions by CRX ID#7
aklinker1 merged 2 commits intomainfrom
edge

Conversation

@aklinker1
Copy link
Copy Markdown
Member

@aklinker1 aklinker1 commented Apr 11, 2026

Adds two queries:

  1. edgeAddon(id: "...")
  2. edgeAddons(ids: [...])

Example query:

{
  chromeExtensions(ids: ["mgmdkjcljneegjfajchedjpdhbadklcf"]) {
    ...Data
  }
  firefoxAddons(ids: ["anime-skip"]) {
    ...Data
  }
  edgeAddon(ids: ["aghmglalnfmjbipodadgbgpakneabgnp"]) {
    ...Data
  }
}

fragment Data on Extension {
  id
  name
  iconUrl
  shortDescription
  storeUrl
  rating
  users
}
Response
{
  "data": {
    "chromeExtensions": [
      {
        "id": "mgmdkjcljneegjfajchedjpdhbadklcf",
        "name": "Anime Skip Player",
        "iconUrl": "https://lh3.googleusercontent.com/lTplXRdnpEB-7DGRa_1nCKao_3aJ3C_e-GNVs9tQV9hDUXgupc1SsW6OrruxgrkSdFBSOqeia56YWgJI2IgpV1MK49s=s256",
        "shortDescription": "Custom video player for anime streaming websites. Skip intros, outros, and more.",
        "storeUrl": "https://chromewebstore.google.com/detail/anime-skip-player/mgmdkjcljneegjfajchedjpdhbadklcf",
        "rating": 4.4,
        "users": 2000
      }
    ],
    "firefoxAddons": [
      {
        "id": "2655498",
        "name": "Anime Skip Player",
        "iconUrl": "https://addons.mozilla.org/user-media/addon_icons/2655/2655498-64.png?modified=acc840da",
        "shortDescription": "Custom video player that provides the best anime watching experience, has fully customizable keyboard shortcuts, and auto-skips intros, outros, credits, filler, and more!",
        "storeUrl": "https://addons.mozilla.org/en-US/firefox/addon/anime-skip/",
        "rating": 4.4444,
        "users": 123
      }
    ],
    "edgeAddons": [
      {
        "id": "aghmglalnfmjbipodadgbgpakneabgnp",
        "name": "StayFree - Website Blocker, Web Usage Stats, Shorts Blocker",
        "iconUrl": "https://store-images.s-microsoft.com/image/apps.53886.3773f722-0a10-41fb-b162-eca2284e45c7.91956b09-f4d1-4220-a91b-3ae8123832bd.8fa4d17b-35e8-445f-a2bd-396ba61380f6",
        "shortDescription": "Analytics to help you understand and control your website usage, leading to less distractions and enhanced productivity",
        "storeUrl": "https://microsoftedge.microsoft.com/addons/detail/aghmglalnfmjbipodadgbgpakneabgnp",
        "rating": 0,
        "users": 528
      }
    ]
  }
}

@aklinker1 aklinker1 merged commit e1625e2 into main Apr 11, 2026
@aklinker1 aklinker1 deleted the edge branch April 11, 2026 23:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant