blob: d2cd32e9695145041c414a1b6c421c79f771e51a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
---
title: tabs.show()
slug: Mozilla/Add-ons/WebExtensions/API/tabs/show
tags:
- API
- Add-ons
- Extensions
- Method
- Reference
- WebExtensions
- show
- tabs
translation_of: Mozilla/Add-ons/WebExtensions/API/tabs/show
---
<div>{{AddonSidebar()}}</div>
<p>Affiche un ou plusieurs onglets précédemment masqués par un appel à {{WebExtAPIRef("tabs.hide")}}.</p>
<p>C'est une fonction asynchrone qui renvoie une <code><a href="/fr/docs/Web/JavaScript/Reference/Objets_globaux/Promise">Promise</a></code>.</p>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox brush:js">var showing = browser.tabs.show(
tabIds // integer or integer array
)
</pre>
<h3 id="Paramètres">Paramètres</h3>
<dl>
<dt><code>tabIds</code></dt>
<dd><code><code>integer</code></code> or <code><code>array</code></code> of <code><code>integer</code></code>. Les ID de l'onglet ou des onglets à afficher.</dd>
</dl>
<h3 id="Valeur_retournée">Valeur retournée</h3>
<p>Une <code><a href="/fr/docs/Web/JavaScript/Reference/Objets_globaux/Promise">Promise</a></code> qui sera accomplie sans arguments. Si une erreur se produit, la promesse sera rejetée avec un message d'erreur.</p>
<h2 id="Exemples">Exemples</h2>
<p>Afficher un seul onglet :</p>
<pre class="brush: js">function onShown() {
console.log(`Shown`);
}
function onError(error) {
console.log(`Error: ${error}`);
}
browser.tabs.show(2).then(onShown, onError);</pre>
<p>Afficher plusieurs onglets :</p>
<pre class="brush: js">function onShown() {
console.log(`Shown`);
}
function onError(error) {
console.log(`Error: ${error}`);
}
browser.tabs.show([15, 14, 1]).then(onShown, onError);</pre>
<p>{{WebExtExamples}}</p>
<h2 id="Compatibilité_du_navigateur">Compatibilité du navigateur</h2>
<p>{{Compat("webextensions.api.tabs.show")}}</p>
|