blob: e7f213c21a30e6dd3d73b4c41753aa6320e2f9c6 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
---
title: permissions
slug: Mozilla/Add-ons/WebExtensions/API/permissions
tags:
- API
- Add-ons
- Extensions
- Permissions
- Reference
- WebExtensions
translation_of: Mozilla/Add-ons/WebExtensions/API/permissions
---
<div>{{AddonSidebar}}</div>
<div>拡張機能のインストール後、実行時に特別なパーミッションの要求を可能にする。</div>
<p>拡張機能は強力な WebExtension API の多くにアクセスするパーミッション(アクセス権)を必要とします。manifest.json の <code><a href="/ja/docs/Mozilla/Add-ons/WebExtensions/manifest.json/permissions">permissions</a></code> に必要なパーミッション記述することで、インストール時にユーザーに対しパーミッションを要求できます。インストール時にパーミッションを要求する主なメリットは次の通りです:</p>
<ul>
<li>ユーザーは一度のみアクセス権を要求されます。したがって、混乱しにくくシンプルに決断を下すことができます。</li>
<li>拡張機能は必要な時のみAPIに頼ることが可能です。すでに動作していれば、アクセス権は付与されていることになります。</li>
</ul>
<p>インストールした拡張機能のアクセス権の認証の見た目は、ユーザーにとってシンプルなGUIとは言えません。ユーザーは about:debuggingのページを使用して、"このFirefox"ボタンから"拡張機能"のセクションに行き、参照するアドオンの"マニフェスト URL"のリンクを使用しなければなりません。 このURLは拡張機能で使用されている生のjsonファイルへのリンクです。拡張機能のjsonファイルは"permissions"ブロックを含み、これを確認することによってアドオンが使用しているアクセス権を確認することができます。</p>
<p>拡張機能は実行時に、permissions APIによって追加のパーミッションを求めることができます.These permissions need to be listed in the <code><a href="/ja/docs/Mozilla/Add-ons/WebExtensions/manifest.json/optional_permissions">optional_permissions</a></code> manifest.json key. Note that some permissions are not allowed in <code>optional_permissions</code>. The main advantages of this are:</p>
<ul>
<li>the extension can run with a smaller set of permissions except when it actually needs them</li>
<li>the extension can handle permission denial in a graceful manner instead of presenting the user with a global "all or nothing" choice at install time. You can still get a lot out of that map extension without giving it access to your location, for example.</li>
<li>
<p>the extension may need <a href="/ja/Add-ons/WebExtensions/manifest.json/permissions#Host_permissions">host permissions</a>, but not know at install time exactly which host permissions it needs. For example, the list of hosts may be a user setting. In this scenario, asking for a more specific range of hosts at runtime can be an alternative to asking for "<all_urls>" at install time.</p>
</li>
</ul>
<div>To use the permissions API, decide which permissions your extension can request at runtime, and list them in <code><a href="/ja/docs/Mozilla/Add-ons/WebExtensions/manifest.json/optional_permissions">optional_permissions</a></code>. After this, you can request any permissions that were included in <code>optional_permissions</code>. Requests may only be made in the handler for a user action (for example, a click handler).</div>
<h2 id="Types" name="Types">型</h2>
<dl>
<dt>{{WebExtAPIRef("permissions.Permissions")}}</dt>
<dd>Represents a set of permissions.</dd>
</dl>
<h2 id="Methods" name="Methods">メソッド</h2>
<dl>
<dt>{{WebExtAPIRef("permissions.contains()")}}</dt>
<dd>Find out whether the extension has the given set of permissions.</dd>
<dt>{{WebExtAPIRef("permissions.getAll()")}}</dt>
<dd>Get all the permissions this extension currently has.</dd>
<dt>{{WebExtAPIRef("permissions.remove()")}}</dt>
<dd>Give up a set of permissions.</dd>
<dt>{{WebExtAPIRef("permissions.request()")}}</dt>
<dd>Ask for a set of permissions.</dd>
</dl>
<h2 id="Event_handlers" name="Event_handlers">Event handlers</h2>
<dl>
<dt>{{WebExtAPIRef("permissions.onAdded")}}</dt>
<dd>Fired when a new permission is granted.</dd>
<dt>{{WebExtAPIRef("permissions.onRemoved")}}</dt>
<dd>Fired when a permission is removed.</dd>
</dl>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザ実装状況</h2>
<p>{{Compat("webextensions.api.permissions")}}</p>
<h2 id="その他">その他</h2>
<ul>
<li><code>manifest.json</code> <code><a href="/ja/docs/Mozilla/Add-ons/WebExtensions/manifest.json/permissions">permissions</a></code> property</li>
<li><code>manifest.json</code> <code><a href="/ja/docs/Mozilla/Add-ons/WebExtensions/manifest.json/optional_permissions">optional_permissions</a></code> property</li>
</ul>
<p>{{WebExtExamples("h2")}}</p>
<div class="note"><strong>Acknowledgements</strong>
<p>This API is based on Chromium's <a href="https://developer.chrome.com/extensions/permissions"><code>chrome.permissions</code></a> API.</p>
<p>Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.</p>
</div>
|