This detection only works if the extension is enabled. If a known extension is installed but currently disabled, it will not be detected by the SDK.
Overview
The web extension SDK uses a content script that attempts to access a list of known Web Accessible Resources (WARs) exposed by other extensions. If any of the URLs are accessible, the corresponding extension is considered installed. This detection method is subject to browser restrictions. Make sure that you are calling the detection API from a tab and context where content scripts can execute (e.g., not fromchrome://extensions or other restricted URLs).
Detecting Installed Extensions
Use thegetAllKnownInstalledExtensions() method provided by the SDK to get a list of known extensions that are both installed and currently enabled in the user’s browser.
name: Name of the extensionid: Extension ID
Requirements and Limitations
- The detection call must originate from a tab where content scripts are active.
- Internal browser pages such as chrome://extensions, about:blank, or edge://settings do not support content script injection and are therefore unsupported.
- Extension detection is based on a curated list of known extensions and their publicly accessible assets (e.g., images or scripts); only extensions with detectable resources can be identified.
- The method only detects extensions that are currently installed and enabled.
If your use case requires detecting an extension not currently supported, please contact the Sleek team to request support for new detectable extensions.

