blob: 33d944da270965825b8e3f0e35faffee4d51e2e4 (
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
|
---
title: description
slug: Mozilla/Add-ons/WebExtensions/manifest.json/description
tags:
- Reference
- WebExtensions
- description
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": "Заменяет картинки на картинки с котиками."</pre>
</td>
</tr>
</tbody>
</table>
<p>Краткое описание дополнения, предназначенное для показа в интерфейсе браузера.</p>
<p>Это <a href="/ru/Add-ons/WebExtensions/Internationalization#Internationalizing_manifest.json">локализуемое свойство</a>.</p>
<h2 id="Пример">Пример</h2>
<pre class="brush: json no-line-numbers">"description": "Заменяет картинки на картинки с котиками."</pre>
<h2 id="Совместимость_с_браузерами">Совместимость с браузерами</h2>
<p>{{Compat("webextensions.manifest.description")}}</p>
|