blob: 98028f9235fd6fd6ccbba1a848967d47509189a5 (
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
|
---
title: version
slug: Mozilla/Add-ons/WebExtensions/manifest.json/version
tags:
- version
- 版本信息
- 附加组件
translation_of: Mozilla/Add-ons/WebExtensions/manifest.json/version
---
<p>{{AddonSidebar}}</p>
<table class="fullwidth-table standard-table">
<tbody>
<tr>
<th scope="row" style="width: 30%;">Type</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">
"version": "0.1"</pre>
</td>
</tr>
</tbody>
</table>
<p>附加组件的版本, 一般格式设置为由点分隔开来数字的ASCII字符串. 关于版本格式的详细信息, 请查看 <a href="https://developer.mozilla.org/en-US/docs/Toolkit_version_format">Version format</a> .</p>
<p>需要注意的是 Chrome 浏览器的 version 格式要求(<a href="https://developer.chrome.com/extensions/manifest/version">the syntax defined for Chrome's <code>version</code></a>)比 Firefox 浏览器的 version 格式更严格一些, 这意味这:</p>
<ul>
<li>对 Chrome 浏览器有效的 version 特性的值一定在 Firefox 浏览器中有效</li>
<li>但对 Firefox 浏览器有效的 version 特性的值在 Chrome 浏览器中却不一定有效</li>
</ul>
<h2 id="示例">示例</h2>
<pre class="brush: json">"version": "0.1"</pre>
<h2 id="Browser_compatibility">Browser compatibility</h2>
<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
<p>{{Compat("webextensions.manifest.version")}}</p>
|