diff options
Diffstat (limited to 'files/ja/mozilla/add-ons/webextensions/api/windows/index.html')
-rw-r--r-- | files/ja/mozilla/add-ons/webextensions/api/windows/index.html | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/files/ja/mozilla/add-ons/webextensions/api/windows/index.html b/files/ja/mozilla/add-ons/webextensions/api/windows/index.html new file mode 100644 index 0000000000..5b84904cdc --- /dev/null +++ b/files/ja/mozilla/add-ons/webextensions/api/windows/index.html @@ -0,0 +1,117 @@ +--- +title: windows +slug: Mozilla/Add-ons/WebExtensions/API/windows +tags: + - API + - Add-ons + - Extensions + - Interface + - Non-standard + - Reference + - WebExtensions + - Windows +translation_of: Mozilla/Add-ons/WebExtensions/API/windows +--- +<div>{{AddonSidebar}}</div> + +<p>ブラウザーウィンドウと相互作用します。この API を使って開いているウィンドウの情報を取得したり、ウィンドウを開き、修正し、閉じることができます。ウィンドウのオープン、クローズ、アクティベートのイベントをリッスンすることもできます。</p> + +<h2 id="Types" name="Types">型</h2> + +<dl> + <dt>{{WebExtAPIRef("windows.WindowType")}}</dt> + <dd>ブラウザーウィンドウの this の型。</dd> + <dt>{{WebExtAPIRef("windows.WindowState")}}</dt> + <dd>ブラウザーウィンドウの状態。</dd> + <dt>{{WebExtAPIRef("windows.Window")}}</dt> + <dd>ブラウザーウィンドウについての情報を含む。</dd> + <dt>{{WebExtAPIRef("windows.CreateType")}}</dt> + <dd>作成するブラウザーウィンドウの型を指定する。</dd> +</dl> + +<h2 id="Constants" name="Constants">定数</h2> + +<dl> + <dt>{{WebExtAPIRef("windows.WINDOW_ID_NONE")}}</dt> + <dd>ブラウザーウィンドウがないことを表す <code>windowId</code> の値。</dd> + <dt>{{WebExtAPIRef("windows.WINDOW_ID_CURRENT")}}</dt> + <dd>現在のウィンドウを表す <code>windowId</code> の値。</dd> +</dl> + +<h2 id="Methods" name="Methods">メソッド</h2> + +<dl> + <dt>{{WebExtAPIRef("windows.get()")}}</dt> + <dd>与えられた ID のウィンドウの詳細を取得します。</dd> + <dt>{{WebExtAPIRef("windows.getCurrent()")}}</dt> + <dd>現在のウィンドウを取得します。</dd> + <dt>{{WebExtAPIRef("windows.getLastFocused()")}}</dt> + <dd>最も最近フォーカスされたウィンドウを取得します — 典型的には「最上位」のウィンドウです。</dd> + <dt>{{WebExtAPIRef("windows.getAll()")}}</dt> + <dd>すべてのウィンドウを取得します。</dd> + <dt>{{WebExtAPIRef("windows.create()")}}</dt> + <dd> + <p>新しいウィンドウを作成します。</p> + </dd> + <dt>{{WebExtAPIRef("windows.update()")}}</dt> + <dd>ウィンドウのプロパティを更新します。これを使ってウィンドウの移動、リサイズ、フォーカス(外し)などを行います。</dd> + <dt>{{WebExtAPIRef("windows.remove()")}}</dt> + <dd>ウィンドウと、そのタブのすべてを閉じます。</dd> +</dl> + +<h2 id="Events" name="Events">イベント</h2> + +<dl> + <dt>{{WebExtAPIRef("windows.onCreated")}}</dt> + <dd>ウィンドウが作成された時に発火します。</dd> + <dt>{{WebExtAPIRef("windows.onRemoved")}}</dt> + <dd>ウィンドウが閉じられた時に発火します。</dd> + <dt>{{WebExtAPIRef("windows.onFocusChanged")}}</dt> + <dd>現在フォーカスされているウィンドウが変わった時に発火します。</dd> +</dl> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2> + + + +<p>{{Compat("webextensions.api.windows")}}</p> + +<p>{{WebExtExamples("h2")}}</p> + +<div class="note"><strong>Acknowledgements</strong> + +<p>This API is based on Chromium's <a href="https://developer.chrome.com/extensions/windows"><code>chrome.windows</code></a> API. This documentation is derived from <a href="https://chromium.googlesource.com/chromium/src/+/master/chrome/common/extensions/api/windows.json"><code>windows.json</code></a> in the Chromium code.</p> + +<p>Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.</p> +</div> + +<div class="hidden"> +<pre>// Copyright 2015 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +</pre> +</div> |