blob: 51528069fc6e90433b115418c502899a7051a2b0 (
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
|
---
title: name
slug: Web/Manifest/name
tags:
- マニフェスト
- ウェブ
- name
browser-compat: html.manifest.name
translation_of: Web/Manifest/name
---
{{QuickLinksWithSubpages("/ja/docs/Web/Manifest")}}
<table class="properties">
<tbody>
<tr>
<th scope="row">型</th>
<td><code>String</code></td>
</tr>
<tr>
<th scope="row">必須</th>
<td>はい</td>
</tr>
</tbody>
</table>
_`name`_ メンバーは文字列で、ウェブアプリケーションの名前を通常ユーザーに表示される形 (例えば、他のアプリケーションとのリストの中や、アイコンのラベルなど) で表します。 `name` は書字方向に対応しており、 [`dir`](/ja/docs/Web/Manifest/dir) および [`lang`](/ja/docs/Web/Manifest/lang) の各マニフェストメンバーの値に基づいて左書きで表示されたり右書きで表示されたりします。
## 例
単純な `name` を左書き言語で:
```json
"name": "Awesome application"
```
アラビア語で右書きの `name`:
```json
"dir": "rtl",
"lang": "ar",
"name": "!أنا من التطبيق"
```
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
|