Microsoft Edge browser extension development

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_website-b2b-advance_0.png
    B2B ADVANCE company website development
    1212
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_websites_belfingroup_462_0.webp
    Website development for BELFINGROUP
    852
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_bitrix-bitrix-24-1c_fixper_448_0.png
    Website development for FIXPER company
    815

Edge Extension Development

Microsoft Edge has been running on the Chromium engine since 2020, so Chrome Extensions are compatible with Edge with practically no changes. Edge even supports installing extensions from Chrome Web Store directly. However, publishing to Microsoft Edge Add-ons (equivalent to Chrome Web Store) and corporate deployment via Active Directory are separate tasks.

Compatibility with Chrome

Edge supports identical Chrome Extensions API. The chrome.* namespace works in Edge the same way as in Chrome. The only thing to remember:

// Both work in Edge
chrome.storage.local.set({ key: 'value' });
browser.storage.local.set({ key: 'value' }); // with webextension-polyfill

An extension written for Chrome MV3 installs in Edge without changes — just upload the same ZIP.

Edge API specifics

Edge added several proprietary APIs unavailable in Chrome:

// Sync via Microsoft account
// (similar to chrome.storage.sync, but via OneDrive)
// Available via standard chrome.storage.sync in Edge

// Microsoft Graph integration — via web requests, not via special API
// Edge Collections — no public API for extensions

// Edge side panel (separate from chrome.sidePanel)
// manifest.json:
"side_panel": {
  "default_path": "panel.html"
}

Manifest.json with Edge-specific settings

{
  "manifest_version": 3,
  "name": "My Edge Extension",
  "version": "1.0.0",
  "permissions": ["storage", "tabs", "activeTab", "scripting"],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icons/icon48.png"
  },
  "content_scripts": [{
    "matches": ["https://*/*"],
    "js": ["content.js"],
    "run_at": "document_idle"
  }],
  "browser_specific_settings": {
    "edge": {
      "browser_action_next_to_addressbar": true
    }
  }
}

Testing in Edge

# Load unpacked extension
# edge://extensions/ → Developer mode → Load unpacked extension

# Or via CLI (Edge must be installed)
"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" \
  --load-extension="C:\path\to\extension"

Publishing to Microsoft Edge Add-ons

  1. Register Microsoft Partner Center account
  2. Go to Edge Add-ons Developer Dashboard
  3. Upload ZIP with extension
  4. Fill in metadata (description, screenshots, category)
  5. Wait for review (usually 3–7 working days)

Review is stricter than Chrome Web Store — Microsoft separately checks privacy policy.

Corporate deployment via Group Policy

Edge as a corporate browser supports extension deployment via GPO without App Store:

<!-- ExtensionInstallForcelist via ADMX/GPO -->
<!-- Value: extension-id;update-url -->
<!-- For local extension you need own update server -->
<policy name="ExtensionInstallForcelist">
  <value>abcdefghijklmnopabcdefghijklmnop;https://update.example.com/updates.xml</value>
</policy>

Update server (minimal implementation):

<!-- updates.xml -->
<?xml version='1.0' encoding='UTF-8'?>
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
  <app appid='abcdefghijklmnopabcdefghijklmnop'>
    <updatecheck codebase='https://update.example.com/extension.crx'
                 version='1.0.0' />
  </app>
</gupdate>

To package .crx without Chrome Web Store:

# Via Chromium CLI
chromium --pack-extension=/path/to/extension \
         --pack-extension-key=/path/to/key.pem

Edge operation modes: IE Mode

Edge supports Internet Explorer mode for legacy sites. Extensions in IE Mode don't work — the tab switches to Trident engine. If the extension needs to work on corporate legacy sites, this limitation must be considered at the design stage.

Timeline

Adapting Chrome Extension for Edge Add-ons Store (repackaging + metadata + review) — 1–2 working days. Extension with Edge-specific functionality (side panel, corporate GPO deployment) — 3–5 days additional.