diff options
Diffstat (limited to 'files/fr/mozilla/add-ons/webextensions/api/pageaction/openpopup/index.html')
-rw-r--r-- | files/fr/mozilla/add-ons/webextensions/api/pageaction/openpopup/index.html | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/files/fr/mozilla/add-ons/webextensions/api/pageaction/openpopup/index.html b/files/fr/mozilla/add-ons/webextensions/api/pageaction/openpopup/index.html new file mode 100644 index 0000000000..7133ca40bd --- /dev/null +++ b/files/fr/mozilla/add-ons/webextensions/api/pageaction/openpopup/index.html @@ -0,0 +1,58 @@ +--- +title: pageAction.openPopup() +slug: Mozilla/Add-ons/WebExtensions/API/pageAction/openPopup +tags: + - API + - Add-ons + - Extensions + - Method + - Reference + - WebExtensions + - close + - sidebarAction +translation_of: Mozilla/Add-ons/WebExtensions/API/pageAction/openPopup +--- +<div>{{AddonSidebar()}}</div> + +<div>Ouvrez le menu contextuel de l'action de la page.</div> + +<div></div> + +<div> +<p>Vous pouvez uniquement appeler cette fonction à partir du gestionnaire pour une <a href="/fr/Add-ons/WebExtensions/User_actions">action utilisateur</a>.</p> +</div> + +<h2 id="Syntaxe">Syntaxe</h2> + +<pre class="syntaxbox brush:js">browser.pageAction.openPopup() +</pre> + +<h3 id="Paramètres">Paramètres</h3> + +<p>None.</p> + +<h3 id="Valeur_retourné">Valeur retourné</h3> + +<p>Une <code><a href="/fr/docs/Web/JavaScript/Reference/Objets_globaux/Promise">Promise</a></code> qui est résolue sans arguments.</p> + +<h2 id="Compatibilité_du_navigateur">Compatibilité du navigateur</h2> + +<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p> + +<p>{{Compat("webextensions.api.pageAction.openPopup", 10)}}</p> + +<h2 id="Exemples">Exemples</h2> + +<p>Ouvrez la fenêtre contextuelle lorsque l'utilisateur sélectionne un élément de menu contextuel :</p> + +<pre class="brush: js">browser.menus.create({ + id: "open-popup", + title: "open popup", + contexts: ["all"] +}); + +browser.menus.onClicked.addListener(() => { + browser.pageAction.openPopup(); +});</pre> + +<p>{{WebExtExamples}}</p> |