aboutsummaryrefslogtreecommitdiff
path: root/files/ja/mozilla/add-ons/webextensions/manifest.json/developer/index.html
blob: 19190c1e0258c4aa08f861a9554c03e3e4545509 (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: developer
slug: Mozilla/Add-ons/WebExtensions/manifest.json/developer
tags:
  - Add-ons
  - Extensions
  - WebExtensions
translation_of: Mozilla/Add-ons/WebExtensions/manifest.json/developer
---
<div>{{AddonSidebar}}</div>

<table class="fullwidth-table standard-table">
 <tbody>
  <tr>
   <th scope="row" style="width: 30%;"></th>
   <td><code>Object</code></td>
  </tr>
  <tr>
   <th scope="row">必須</th>
   <td>いいえ</td>
  </tr>
  <tr>
   <th scope="row"></th>
   <td>
    <pre class="brush: json no-line-numbers">
"developer": {
  "name": "Walt Whitman",
  "url": "https://en.wikipedia.org/wiki/Walt_Whitman"
}</pre>
   </td>
  </tr>
 </tbody>
</table>

<p>拡張機能の開発者の名前と、そのホームページ URL で、ブラウザーの UI に表示されるためのもの。</p>

<p>このオブジェクトと、そのプロパティの2つ共、オプションです。"name" と "url" プロパティは、存在する場合、<a href="/ja/Add-ons/WebExtensions/manifest.json/author">author</a><a href="/ja/Add-ons/WebExtensions/manifest.json/homepage_url"> homepage_url</a> キーをそれぞれ上書きします。このオブジェクトでは単独の開発者名と URL が指定できます。</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">"developer": {
  "name": "Walt Whitman",
  "url": "https://en.wikipedia.org/wiki/Walt_Whitman"
}</pre>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザ実装状況</h2>

<p>{{Compat("webextensions.manifest.developer")}}</p>