blob: 01749d5ff33e9c8b5f107d80cd66bff55adc9313 (
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: homepage_url
slug: Mozilla/Add-ons/WebExtensions/manifest.json/主页地址
translation_of: Mozilla/Add-ons/WebExtensions/manifest.json/homepage_url
---
<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">
"homepage_url": "https://example.org/my-addon"</pre>
</td>
</tr>
</tbody>
</table>
<p>该扩展的主页地址。</p>
<p>如果 <a href="https://developer.mozilla.org/en-US/Add-ons/WebExtensions/manifest.json/developer">developer</a> 键存在且包含“url”属性,它将会覆盖 <code>homepage_url</code> 键。</p>
<p>这是一个 <a href="/en-US/Add-ons/WebExtensions/Internationalization#Internationalizing_manifest.json">localizable property</a>.</p>
<h2 id="示例">示例</h2>
<pre class="brush: json">"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/beastify"</pre>
<h2 id="浏览器兼容性">浏览器兼容性</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.homepage_url")}}</p>
|