Extensions Domain
Defines commands and events for browser extensions.
Methods
- Extensions.clearStorageItems
- Extensions.getStorageItems
- Extensions.loadUnpacked
- Extensions.removeStorageItems
- Extensions.setStorageItems
- Extensions.uninstall
Types
Methods
Extensions.clearStorageItems #
Clears extension storage in the given storageArea.
Parameters
id stringID of extension.
storageArea StorageArea to remove data from.
Extensions.getStorageItems #
Gets data from extension storage in the given storageArea. If keys is
specified, these are used to filter the result.
Parameters
id stringID of extension.
storageArea StorageArea to retrieve data from.
keysOptional
array[ string ]Keys to retrieve.
Return object
data objectExtensions.loadUnpacked #
Installs an unpacked extension from the filesystem similar to --load-extension CLI flags. Returns extension ID once the extension has been installed. Available if the client is connected using the --remote-debugging-pipe flag and the --enable-unsafe-extension-debugging flag is set.
Parameters
path stringAbsolute file path.
Return object
id stringExtension id.
Extensions.removeStorageItems #
Removes keys from extension storage in the given storageArea.
Parameters
id stringID of extension.
storageArea StorageArea to remove data from.
keys array[ string ]Keys to remove.
Extensions.setStorageItems #
Sets values in extension storage in the given storageArea. The provided values
will be merged with existing values in the storage area.
Parameters
id stringID of extension.
storageArea StorageArea to set data in.
values objectValues to set.
Extensions.uninstall #
Uninstalls an unpacked extension (others not supported) from the profile. Available if the client is connected using the --remote-debugging-pipe flag and the --enable-unsafe-extension-debugging.
Parameters
id stringExtension id.