contextualIdentities.query()
Liefert Informationen über alle kontextuellen Identitäten oder über die kontextuellen Identitäten, die einem bestimmten Filterargument entsprechen.
Dies ist eine asynchrone Funktion, die ein Promise
zurückgibt.
Syntax
js
let getContext = browser.contextualIdentities.query(
details // object
)
Parameter
Rückgabewert
Ein Promise
, das mit einem Array von ContextualIdentity
Objekten erfüllt wird, wobei jedes eine einzelne Identität beschreibt. Wenn die kontextuelle Identitätsfunktion nicht aktiviert ist, wird das Promise abgelehnt.
Browser-Kompatibilität
BCD tables only load in the browser
Beispiele
Abrufen aller kontextuellen Identitäten und Protokollierung ihrer Namen:
js
function onGot(contexts) {
for (const context of contexts) {
console.log(`Name: ${context.name}`);
}
}
function onError(error) {
console.error(error);
}
browser.contextualIdentities.query({}).then(onGot, onError);
Abrufen aller kontextuellen Identitäten, deren Namen "my-thing" sind, und Protokollierung ihrer Namen:
js
function onGot(contexts) {
for (const context of contexts) {
console.log(`Name: ${context.name}`);
}
}
function onError(error) {
console.error(error);
}
browser.contextualIdentities
.query({
name: "my-thing",
})
.then(onGot, onError);