Browser.extensions() method
Retrieves a map of all extensions installed in the browser, where the keys are extension IDs and the values are the corresponding Extension instances.
Signature
class Browser {
abstract extensions(): Promise<Map<string, Extension>>;
}
Returns:
Promise<Map<string, Extension>>