blob: 3951be09478d2489bcb36d9ebed9fcb51bab30ee (
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
|
---
title: description
slug: Mozilla/Add-ons/WebExtensions/manifest.json/description
tags:
- Add-ons
- Extensions
- WebExtensions
translation_of: Mozilla/Add-ons/WebExtensions/manifest.json/description
---
<div>{{AddonSidebar}}</div>
<table class="fullwidth-table standard-table">
<tbody>
<tr>
<th scope="row" style="width: 30%;">型</th>
<td><code>String</code></td>
</tr>
<tr>
<th scope="row">必須</th>
<td>いいえ</td>
</tr>
<tr>
<th scope="row">例</th>
<td>
<pre class="brush: json no-line-numbers">
"description": "Replaces pictures with pictures of cats."</pre>
</td>
</tr>
</tbody>
</table>
<p>ブラウザーのユーザーインターフェースに表示するための、拡張機能の簡単な説明です。</p>
<p>これは<a href="/ja/Add-ons/WebExtensions/Internationalization#Internationalizing_manifest.json">ローカライズ可能なプロパティ</a>です。</p>
<h2 id="Example" name="Example">例</h2>
<pre class="brush: json no-line-numbers language-json"><code class="language-json"><span class="key token">"description":</span> <span class="string token">"Replaces pictures with pictures of cats."</span></code></pre>
<h2 id="ブラウザ実装状況">ブラウザ実装状況</h2>
<p>{{Compat("webextensions.manifest.description")}}</p>
|