blob: 4effc6546e54126a6f0be7eea4bda1675b5b86e4 (
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: DOMApplicationsRegistry
slug: Web/API/DOMApplicationsRegistry
tags:
- API
- Apps
- Apps API
- NeedsTranslation
- Non-standard
- TopicStub
translation_of: Archive/Marketplace/API/DOMApplicationsRegistry
---
<p>{{ ApiRef("Apps") }}</p>
<p>{{ non-standard_header() }}</p>
<p>Provides support for installing, managing, and controlling Open Web apps in a browser. Currently implemented as {{ domxref('window.navigator.mozApps') }}.</p>
<h2 id="Property">Property</h2>
<dl>
<dt>{{domxref("DOMApplicationsRegistry.mgmt")}}</dt>
<dd>A <code>mgmt</code> object that exposes functions that let dashboards manage and launch apps on a user's behalf.</dd>
</dl>
<h2 id="Methods">Methods</h2>
<dl>
<dt>{{ domxref("DOMApplicationsRegistry.checkInstalled()") }}</dt>
<dd>Checks whether an app has already been installed, taking its manifest as parameter.</dd>
<dt>{{ domxref("DOMApplicationsRegistry.install()") }}</dt>
<dd>Triggers the installation of an app. During the installation process, the app is validated and the user is prompted to approve the installation.</dd>
<dt>{{ domxref("DOMApplicationsRegistry.getSelf()") }}</dt>
<dd>Returns an object that contains an {{ domxref('app') }} object for the app.</dd>
<dt>{{ domxref("DOMApplicationsRegistry.getInstalled()") }}</dt>
<dd>Gets a list of all installed apps.</dd>
</dl>
<h2 id="Browser_compatibility">Browser compatibility</h2>
<p>{{ CompatibilityTable() }}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari (WebKit)</th>
</tr>
<tr>
<td>Basic support</td>
<td>{{ CompatUnknown() }}</td>
<td>16.0</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Phone</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>Basic support</td>
<td>{{ CompatUnknown() }}</td>
<td>16.0</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
</tr>
</tbody>
</table>
</div>
<p> </p>
|