aboutsummaryrefslogtreecommitdiff
path: root/files/ja/mozilla/add-ons/webextensions/api/tabs/tab/index.html
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-09-14 23:03:12 +0900
committerGitHub <noreply@github.com>2021-09-14 23:03:12 +0900
commit4aaee0a1710f4df99bf4e07fa2ae8986b6219c62 (patch)
treea128d8207a561bd1a80de1aa1b95accfb5c39c3b /files/ja/mozilla/add-ons/webextensions/api/tabs/tab/index.html
parentcc7e4c4ed34fe536356fdd39e9fc64935a1a2d05 (diff)
downloadtranslated-content-4aaee0a1710f4df99bf4e07fa2ae8986b6219c62.tar.gz
translated-content-4aaee0a1710f4df99bf4e07fa2ae8986b6219c62.tar.bz2
translated-content-4aaee0a1710f4df99bf4e07fa2ae8986b6219c62.zip
Mozilla/Add-on-url以下の文書内のリンクURLを正規化 (#2365)
- /en-US へのリンクを /ja へのリンクに修正 - /ja が付いていないものに /ja を付加 - MDN内のリンクが完全URLの場合、 /ja/docs からのURLに修正
Diffstat (limited to 'files/ja/mozilla/add-ons/webextensions/api/tabs/tab/index.html')
-rw-r--r--files/ja/mozilla/add-ons/webextensions/api/tabs/tab/index.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/files/ja/mozilla/add-ons/webextensions/api/tabs/tab/index.html b/files/ja/mozilla/add-ons/webextensions/api/tabs/tab/index.html
index 31ee57d609..3e291f4cb6 100644
--- a/files/ja/mozilla/add-ons/webextensions/api/tabs/tab/index.html
+++ b/files/ja/mozilla/add-ons/webextensions/api/tabs/tab/index.html
@@ -25,11 +25,11 @@ translation_of: Mozilla/Add-ons/WebExtensions/API/tabs/Tab
<dt><code>autoDiscardable</code> {{optional_inline}}</dt>
<dd><code>boolean</code>. Whether the tab can be discarded automatically by the browser when resources are low.</dd>
<dt><code>cookieStoreId</code> {{optional_inline}}</dt>
- <dd><code>string</code>. タブのクッキーストア。If different tabs can have different cookie stores (for example, to support <a href="https://wiki.mozilla.org/Security/Contextual_Identity_Project/Containers">contextual identity</a>), you can pass this as the <code>storeId</code> option into various methods of the {{WebExtAPIRef("cookies")}} API, to set and get cookies associated with this tab's cookie store. Only present if the extension has the <code>"cookies"</code> <a href="/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/permissions">permission</a>.</dd>
+ <dd><code>string</code>. タブのクッキーストア。If different tabs can have different cookie stores (for example, to support <a href="https://wiki.mozilla.org/Security/Contextual_Identity_Project/Containers">contextual identity</a>), you can pass this as the <code>storeId</code> option into various methods of the {{WebExtAPIRef("cookies")}} API, to set and get cookies associated with this tab's cookie store. Only present if the extension has the <code>"cookies"</code> <a href="/ja/docs/Mozilla/Add-ons/WebExtensions/manifest.json/permissions">permission</a>.</dd>
<dt><code>discarded</code> {{optional_inline}}</dt>
<dd><code>boolean</code>. タブが破棄されたか。 A discarded tab is one whose content has been unloaded from memory, but is still visible in the tab strip. Its content gets reloaded the next time it's activated.</dd>
<dt><code>favIconUrl</code> {{optional_inline}}</dt>
- <dd><code>string</code>. タブのfaviconのURL。Only present if the extension has the <code>"tabs"</code> <a href="/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/permissions">permission</a>. It may also be an empty string if the tab is loading.</dd>
+ <dd><code>string</code>. タブのfaviconのURL。Only present if the extension has the <code>"tabs"</code> <a href="/ja/docs/Mozilla/Add-ons/WebExtensions/manifest.json/permissions">permission</a>. It may also be an empty string if the tab is loading.</dd>
<dt><code>height</code> {{optional_inline}}</dt>
<dd><code>integer</code>. タブの高さのピクセル値。</dd>
<dt><code>hidden</code></dt>
@@ -47,9 +47,9 @@ translation_of: Mozilla/Add-ons/WebExtensions/API/tabs/Tab
<dt><code>index</code></dt>
<dd><code>integer</code>. 0を底としたウィンドウの中のタブのインデックス。</dd>
<dt><code>isArticle</code></dt>
- <dd><code>boolean</code>. Trueなら<a href="/en-US/Add-ons/WebExtensions/API/tabs/toggleReaderMode">rendered in Reader Mode</a>で閲覧可能、falseならそれ以外。</dd>
+ <dd><code>boolean</code>. Trueなら<a href="/ja/Add-ons/WebExtensions/API/tabs/toggleReaderMode">rendered in Reader Mode</a>で閲覧可能、falseならそれ以外。</dd>
<dt><code>isInReaderMode</code></dt>
- <dd><code>boolean</code>. Trueなら<a href="/en-US/Add-ons/WebExtensions/API/tabs/toggleReaderMode">rendered in Reader Mode</a>で閲覧中、falseならそれ以外。</dd>
+ <dd><code>boolean</code>. Trueなら<a href="/ja/Add-ons/WebExtensions/API/tabs/toggleReaderMode">rendered in Reader Mode</a>で閲覧中、falseならそれ以外。</dd>
<dt><code>lastAccessed</code></dt>
<dd><code>double</code>. タブが最後にアクセスされた時刻(単位: <a class="external external-icon" href="https://en.wikipedia.org/wiki/Unix_time">milliseconds since the epoch</a>)。</dd>
<dt><code>mutedInfo</code> {{optional_inline}}</dt>
@@ -67,9 +67,9 @@ translation_of: Mozilla/Add-ons/WebExtensions/API/tabs/Tab
<dt><code>successorId</code> {{optional_inline}}</dt>
<dd><code>integer</code> タブの後継者のID。</dd>
<dt><code>title</code> {{optional_inline}}</dt>
- <dd><code>string</code>. タブのタイトル。Only present if the extension has the <code>"tabs"</code> <a href="/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/permissions">permission</a>.</dd>
+ <dd><code>string</code>. タブのタイトル。Only present if the extension has the <code>"tabs"</code> <a href="/ja/docs/Mozilla/Add-ons/WebExtensions/manifest.json/permissions">permission</a>.</dd>
<dt><code>url</code> {{optional_inline}}</dt>
- <dd><code>string</code>. タブが表示しているドキュメントのURL。Only present if the extension has the <code>"tabs"</code> <a href="/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/permissions">permission</a>.</dd>
+ <dd><code>string</code>. タブが表示しているドキュメントのURL。Only present if the extension has the <code>"tabs"</code> <a href="/ja/docs/Mozilla/Add-ons/WebExtensions/manifest.json/permissions">permission</a>.</dd>
<dt><code>width</code> {{optional_inline}}</dt>
<dd><code>integer</code>. タブの横幅のピクセル値。</dd>
<dt><code>windowId</code></dt>