-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
12218 lines (11797 loc) · 700 KB
/
index.html
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-hans" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="generator" content="ReSpec 35.1.2">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<style>
span.example-title {
text-transform: none
}
:is(aside, div).example,
div.illegal-example {
padding: .5em;
margin: 1em 0;
position: relative;
clear: both
}
div.illegal-example {
color: red
}
div.illegal-example p {
color: #000
}
aside.example div.example {
border-left-width: .1em;
border-color: #999;
background: #fff
}
</style>
<style>
.issue-label {
text-transform: initial
}
.warning>p:first-child {
margin-top: 0
}
.warning {
padding: .5em;
border-left-width: .5em;
border-left-style: solid
}
span.warning {
padding: .1em .5em .15em
}
.issue.closed span.issue-number {
text-decoration: line-through
}
.issue.closed span.issue-number::after {
content: " (Closed)";
font-size: smaller
}
.warning {
border-color: #f11;
border-color: var(--warning-border, #f11);
border-width: .2em;
border-style: solid;
background: #fbe9e9;
background: var(--warning-bg, #fbe9e9);
color: #000;
color: var(--text, #000)
}
.warning-title:before {
content: "⚠";
font-size: 1.3em;
float: left;
padding-right: .3em;
margin-top: -.3em
}
li.task-list-item {
list-style: none
}
input.task-list-item-checkbox {
margin: 0 .35em .25em -1.6em;
vertical-align: middle
}
.issue a.respec-gh-label {
padding: 5px;
margin: 0 2px 0 2px;
font-size: 10px;
text-transform: none;
text-decoration: none;
font-weight: 700;
border-radius: 4px;
position: relative;
bottom: 2px;
border: none;
display: inline-block
}
</style>
<style>
dfn {
cursor: pointer
}
.dfn-panel {
position: absolute;
z-index: 35;
min-width: 300px;
max-width: 500px;
padding: .5em .75em;
margin-top: .6em;
font-family: "Helvetica Neue", sans-serif;
font-size: small;
background: #fff;
background: var(--indextable-hover-bg, #fff);
color: #000;
color: var(--text, #000);
box-shadow: 0 1em 3em -.4em rgba(0, 0, 0, .3), 0 0 1px 1px rgba(0, 0, 0, .05);
box-shadow: 0 1em 3em -.4em var(--tocsidebar-shadow, rgba(0, 0, 0, .3)), 0 0 1px 1px var(--tocsidebar-shadow, rgba(0, 0, 0, .05));
border-radius: 2px
}
.dfn-panel:not(.docked)>.caret {
position: absolute;
top: -9px
}
.dfn-panel:not(.docked)>.caret::after,
.dfn-panel:not(.docked)>.caret::before {
content: "";
position: absolute;
border: 10px solid transparent;
border-top: 0;
border-bottom: 10px solid #fff;
border-bottom-color: var(--indextable-hover-bg, #fff);
top: 0
}
.dfn-panel:not(.docked)>.caret::before {
border-bottom: 9px solid #a2a9b1;
border-bottom-color: var(--indextable-hover-bg, #a2a9b1)
}
.dfn-panel * {
margin: 0
}
.dfn-panel b {
display: block;
color: #000;
color: var(--text, #000);
margin-top: .25em
}
.dfn-panel ul a[href] {
color: #333;
color: var(--text, #333)
}
.dfn-panel>div {
display: flex
}
.dfn-panel a.self-link {
font-weight: 700;
margin-right: auto
}
.dfn-panel .marker {
padding: .1em;
margin-left: .5em;
border-radius: .2em;
text-align: center;
white-space: nowrap;
font-size: 90%;
color: #040b1c
}
.dfn-panel .marker.dfn-exported {
background: #d1edfd;
box-shadow: 0 0 0 .125em #1ca5f940
}
.dfn-panel .marker.idl-block {
background: #8ccbf2;
box-shadow: 0 0 0 .125em #0670b161
}
.dfn-panel a:not(:hover) {
text-decoration: none !important;
border-bottom: none !important
}
.dfn-panel a[href]:hover {
border-bottom-width: 1px
}
.dfn-panel ul {
padding: 0
}
.dfn-panel li {
margin-left: 1em
}
.dfn-panel.docked {
position: fixed;
left: .5em;
top: unset;
bottom: 2em;
margin: 0 auto;
max-width: calc(100vw - .75em * 2 - .5em - .2em * 2);
max-height: 30vh;
overflow: auto
}
</style>
<title>网页应用程序清单</title>
<style id="respec-mainstyle">
@keyframes pop {
0% {
transform: scale(1, 1)
}
25% {
transform: scale(1.25, 1.25);
opacity: .75
}
100% {
transform: scale(1, 1)
}
}
a.internalDFN {
color: inherit;
border-bottom: 1px solid #99c;
text-decoration: none
}
a.externalDFN {
color: inherit;
border-bottom: 1px dotted #ccc;
text-decoration: none
}
a.bibref {
text-decoration: none
}
.respec-offending-element:target {
animation: pop .25s ease-in-out 0s 1
}
.respec-offending-element,
a[href].respec-offending-element {
text-decoration: red wavy underline
}
@supports not (text-decoration:red wavy underline) {
.respec-offending-element:not(pre) {
display: inline-block
}
.respec-offending-element {
background: url(data:image/gif;base64,R0lGODdhBAADAPEAANv///8AAP///wAAACwAAAAABAADAEACBZQjmIAFADs=) bottom repeat-x
}
}
#references :target {
background: #eaf3ff;
animation: pop .4s ease-in-out 0s 1
}
cite .bibref {
font-style: normal
}
a[href].orcid {
padding-left: 4px;
padding-right: 4px
}
a[href].orcid>svg {
margin-bottom: -2px
}
ol.tof,
ul.tof {
list-style: none outside none
}
.caption {
margin-top: .5em;
font-style: italic
}
#issue-summary>ul {
column-count: 2
}
#issue-summary li {
list-style: none;
display: inline-block
}
details.respec-tests-details {
margin-left: 1em;
display: inline-block;
vertical-align: top
}
details.respec-tests-details>* {
padding-right: 2em
}
details.respec-tests-details[open] {
z-index: 999999;
position: absolute;
border: thin solid #cad3e2;
border-radius: .3em;
background-color: #fff;
padding-bottom: .5em
}
details.respec-tests-details[open]>summary {
border-bottom: thin solid #cad3e2;
padding-left: 1em;
margin-bottom: 1em;
line-height: 2em
}
details.respec-tests-details>ul {
width: 100%;
margin-top: -.3em
}
details.respec-tests-details>li {
padding-left: 1em
}
.self-link:hover {
opacity: 1;
text-decoration: none;
background-color: transparent
}
aside.example .marker>a.self-link {
color: inherit
}
.header-wrapper {
display: flex;
align-items: baseline
}
:is(h2, h3, h4, h5, h6):not(#toc>h2, #abstract>h2, #sotd>h2, .head>h2) {
position: relative;
left: -.5em
}
:is(h2, h3, h4, h5, h6):not(#toch2)+a.self-link {
color: inherit;
order: -1;
position: relative;
left: -1.1em;
font-size: 1rem;
opacity: .5
}
:is(h2, h3, h4, h5, h6)+a.self-link::before {
content: "§";
text-decoration: none;
color: var(--heading-text)
}
:is(h2, h3)+a.self-link {
top: -.2em
}
:is(h4, h5, h6)+a.self-link::before {
color: #000
}
@media (max-width:767px) {
dd {
margin-left: 0
}
}
@media print {
.removeOnSave {
display: none
}
}
</style>
<style>
.icon-title {
text-transform: uppercase;
font-weight: bold;
}
.icons {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.icons>figure {
text-align: left;
margin: 0;
padding: 10px;
width: 188px;
}
.icons>figure>img {
width: 188px;
height: 188px;
min-width: 188px;
min-height: 188px;
}
.icons>figure .icon-title {
display: block;
}
</style>
<meta name="color-scheme" content="light">
<style>
ul.index {
columns: 30ch;
column-gap: 1.5em
}
ul.index li {
list-style: inherit
}
ul.index li span {
color: inherit;
cursor: pointer;
white-space: normal
}
#index-defined-here ul.index li {
font-size: .9rem
}
ul.index code {
color: inherit
}
#index-defined-here .print-only {
display: none
}
@media print {
#index-defined-here .print-only {
display: initial
}
}
</style>
<style>
.mdn {
font-size: .75em;
position: absolute;
right: .3em;
min-width: 0;
margin-top: 3rem
}
.mdn details {
width: 100%;
margin: 1px 0;
position: relative;
z-index: 10;
box-sizing: border-box;
padding: .4em;
padding-top: 0
}
.mdn details[open] {
min-width: 25ch;
max-width: 32ch;
background: #fff;
background: var(--indextable-hover-bg, #fff);
color: #000;
color: var(--indextable-hover-text, #000);
box-shadow: 0 1em 3em -.4em rgba(0, 0, 0, .3), 0 0 1px 1px rgba(0, 0, 0, .05);
box-shadow: 0 1em 3em -.4em var(--tocsidebar-shadow, rgba(0, 0, 0, .3)), 0 0 1px 1px var(--tocsidebar-shadow, rgba(0, 0, 0, .05));
border-radius: 2px;
z-index: 11;
margin-bottom: .4em
}
.mdn summary {
text-align: right;
cursor: default;
margin-right: -.4em
}
.mdn summary span {
font-family: zillaslab, Palatino, "Palatino Linotype", serif;
color: #fff;
color: var(--bg, #fff);
background-color: #000;
background-color: var(--text, #000);
display: inline-block;
padding: 3px
}
.mdn a {
display: inline-block;
word-break: break-all
}
.mdn p {
margin: 0
}
.mdn .engines-all {
color: #058b00
}
.mdn .engines-some {
color: #b00
}
.mdn table {
width: 100%;
font-size: .9em
}
.mdn td {
border: none
}
.mdn td:nth-child(2) {
text-align: right
}
.mdn .nosupportdata {
font-style: italic;
margin: 0
}
.mdn tr::before {
content: "";
display: table-cell;
width: 1.5em;
height: 1.5em;
background: no-repeat center center/contain;
font-size: .75em
}
.mdn .no,
.mdn .unknown {
color: #ccc;
filter: grayscale(100%)
}
.mdn .no::before,
.mdn .unknown::before {
opacity: .5
}
.mdn .chrome::before,
.mdn .chrome_android::before {
background-image: url(https://www.w3.org/assets/logos/browser-logos/chrome/chrome.svg)
}
.mdn .edge::before,
.mdn .edge_mobile::before {
background-image: url(https://www.w3.org/assets/logos/browser-logos/edge/edge.svg)
}
.mdn .firefox::before,
.mdn .firefox_android::before {
background-image: url(https://www.w3.org/assets/logos/browser-logos/firefox/firefox.svg)
}
.mdn .opera::before,
.mdn .opera_android::before {
background-image: url(https://www.w3.org/assets/logos/browser-logos/opera/opera.svg)
}
.mdn .safari::before {
background-image: url(https://www.w3.org/assets/logos/browser-logos/safari/safari.svg)
}
.mdn .safari_ios::before {
background-image: url(https://www.w3.org/assets/logos/browser-logos/safari-ios/safari-ios.svg)
}
.mdn .samsunginternet_android::before {
background-image: url(https://www.w3.org/assets/logos/browser-logos/samsung-internet/samsung-internet.svg)
}
.mdn .webview_android::before {
background-image: url(https://www.w3.org/assets/logos/browser-logos/android-webview/android-webview.png)
}
</style>
<meta name="revision" content="22b225928d1d760c5414f19c67ed595013b7bbad">
<meta name="description"
content="本规范定义了一种基于JSON的文件格式,提供开发人员一个集中位置来放置与网页应用程序相关的元数据。这些元数据包括但不限于网页应用程序的名称、图标链接,以及用户启动网页应用程序时的首选打开URL。清单还允许开发人员声明网页应用程序的默认屏幕方向,并提供设置应用程序显示模式(例如全屏)的能力。此外,清单允许开发人员将网页应用程序“限定”到一个URL。这限制了清单应用的URL范围,并提供了从其他应用程序“深度链接”到网页应用程序的方法。">
<link rel="canonical" href="https://www.w3.org/TR/appmanifest/">
<style>
.hljs {
--base: #fafafa;
--mono-1: #383a42;
--mono-2: #686b77;
--mono-3: #717277;
--hue-1: #0b76c5;
--hue-2: #336ae3;
--hue-3: #a626a4;
--hue-4: #42803c;
--hue-5: #ca4706;
--hue-5-2: #c91243;
--hue-6: #986801;
--hue-6-2: #9a6a01
}
@media (prefers-color-scheme:dark) {
.hljs {
--base: #282c34;
--mono-1: #abb2bf;
--mono-2: #818896;
--mono-3: #5c6370;
--hue-1: #56b6c2;
--hue-2: #61aeee;
--hue-3: #c678dd;
--hue-4: #98c379;
--hue-5: #e06c75;
--hue-5-2: #be5046;
--hue-6: #d19a66;
--hue-6-2: #e6c07b
}
}
.hljs {
display: block;
overflow-x: auto;
padding: .5em;
color: #383a42;
color: var(--mono-1, #383a42);
background: #fafafa;
background: var(--base, #fafafa)
}
.hljs-comment,
.hljs-quote {
color: #717277;
color: var(--mono-3, #717277);
font-style: italic
}
.hljs-doctag,
.hljs-formula,
.hljs-keyword {
color: #a626a4;
color: var(--hue-3, #a626a4)
}
.hljs-deletion,
.hljs-name,
.hljs-section,
.hljs-selector-tag,
.hljs-subst {
color: #ca4706;
color: var(--hue-5, #ca4706);
font-weight: 700
}
.hljs-literal {
color: #0b76c5;
color: var(--hue-1, #0b76c5)
}
.hljs-addition,
.hljs-attribute,
.hljs-meta-string,
.hljs-regexp,
.hljs-string {
color: #42803c;
color: var(--hue-4, #42803c)
}
.hljs-built_in,
.hljs-class .hljs-title {
color: #9a6a01;
color: var(--hue-6-2, #9a6a01)
}
.hljs-attr,
.hljs-number,
.hljs-selector-attr,
.hljs-selector-class,
.hljs-selector-pseudo,
.hljs-template-variable,
.hljs-type,
.hljs-variable {
color: #986801;
color: var(--hue-6, #986801)
}
.hljs-bullet,
.hljs-link,
.hljs-meta,
.hljs-selector-id,
.hljs-symbol,
.hljs-title {
color: #336ae3;
color: var(--hue-2, #336ae3)
}
.hljs-emphasis {
font-style: italic
}
.hljs-strong {
font-weight: 700
}
.hljs-link {
text-decoration: underline
}
</style>
<style>
var {
position: relative;
cursor: pointer
}
var[data-type]::after,
var[data-type]::before {
position: absolute;
left: 50%;
top: -6px;
opacity: 0;
transition: opacity .4s;
pointer-events: none
}
var[data-type]::before {
content: "";
transform: translateX(-50%);
border-width: 4px 6px 0 6px;
border-style: solid;
border-color: transparent;
border-top-color: #222
}
var[data-type]::after {
content: attr(data-type);
transform: translateX(-50%) translateY(-100%);
background: #222;
text-align: center;
font-family: "Dank Mono", "Fira Code", monospace;
font-style: normal;
padding: 6px;
border-radius: 3px;
color: #daca88;
text-indent: 0;
font-weight: 400
}
var[data-type]:hover::after,
var[data-type]:hover::before {
opacity: 1
}
</style>
<script id="initialUserConfig" type="application/json">{
"mdn": true,
"previousPublishDate": "2024-09-05",
"specStatus": "WD",
"shortName": "appmanifest",
"prevVersion": "FPWD",
"previousMaturity": "WD",
"formerEditors": [
{
"name": "Matt Giuca",
"company": "Google Inc.",
"companyURL": "https://www.google.com/",
"w3cid": 91260,
"retiredDate": "2024-07-01"
},
{
"name": "Anssi Kostiainen",
"company": "Intel Corporation",
"companyURL": "https://intel.com/",
"w3cid": 41974,
"retiredDate": "2024-05-10"
},
{
"name": "Aaron Gustafson",
"company": "Microsoft Corporation",
"companyURL": "https://microsoft.com/",
"w3cid": 43672,
"retiredDate": "2024-05-10"
},
{
"name": "Mounir Lamouri",
"company": "Google Inc.",
"companyURL": "https://www.google.com/"
},
{
"name": "Rob Dolin",
"company": "Microsoft Corporation",
"companyURL": "https://www.microsoft.com/"
}
],
"editors": [
{
"name": "Marcos Cáceres",
"company": "Apple",
"companyURL": "https://apple.com",
"w3cid": 39125
},
{
"name": "Kenneth Rohde Christiansen",
"company": "Intel Corporation",
"companyURL": "https://intel.com/",
"w3cid": 57705
},
{
"name": "Diego González",
"company": "Microsoft Corporation",
"companyURL": "https://microsoft.com/",
"w3cid": 66757
},
{
"name": "Daniel Murphy",
"company": "Google Inc.",
"companyURL": "https://www.google.com/",
"w3cid": 90918
},
{
"name": "Christian Liebel",
"company": "Thinktecture AG",
"companyURL": "https://www.thinktecture.com/",
"w3cid": 109589
}
],
"group": "webapps",
"github": "https://github.com/w3c/manifest/",
"caniuse": "web-app-manifest",
"xref": "web-platform",
"gitRevision": "22b225928d1d760c5414f19c67ed595013b7bbad",
"publishDate": "2024-10-11",
"publishISODate": "2024-10-11T00:00:00.000Z",
"generatedSubtitle": "W3C Working Draft 11 October 2024"
}</script>
<link rel="stylesheet" href="https://www.w3.org/StyleSheets/TR/2021/W3C-WD">
</head>
<body data-cite="ENCODING SCREEN-ORIENTATION MEDIAQUERIES-5 IMAGE-RESOURCE MIMESNIFF HTML INFRA URL WEBIDL DOM FETCH"
class="h-entry">
<div class="head">
<p class="logos"><a class="logo" href="https://www.w3.org/"><img alt="W3C" height="48"
src="https://www.w3.org/StyleSheets/TR/2021/logos/W3C" width="72">
</a></p>
<h1 id="title" class="title">网页应用程序清单</h1>
<p id="w3c-state"><a href="https://www.w3.org/standards/types#WD">W3C工作草案</a> <time class="dt-published"
datetime="2024-10-11">2024年10月11日</time></p>
<details open="">
<summary>更多关于此文档的详情</summary>
<dl>
<dt>此版本:</dt>
<dd>
<a class="u-url"
href="https://www.w3.org/TR/2024/WD-appmanifest-20241011/">https://www.w3.org/TR/2024/WD-appmanifest-20241011/</a>
</dd>
<dt>最新发布版本:</dt>
<dd>
<a href="https://www.w3.org/TR/appmanifest/">https://www.w3.org/TR/appmanifest/</a>
</dd>
<dt>最新编辑草案:</dt>
<dd><a href="https://w3c.github.io/manifest/">https://w3c.github.io/manifest/</a></dd>
<dt>历史:</dt>
<dd>
<a
href="https://www.w3.org/standards/history/appmanifest/">https://www.w3.org/standards/history/appmanifest/</a>
</dd>
<dd>
<a href="https://github.com/w3c/manifest/commits/">提交历史</a>
</dd>
<dt>编辑:</dt>
<dd class="editor p-author h-card vcard" data-editor-id="39125">
<span class="p-name fn">Marcos Cáceres</span> (<a class="p-org org h-org"
href="https://apple.com">苹果公司</a>)
</dd>
<dd class="editor p-author h-card vcard" data-editor-id="57705">
<span class="p-name fn">Kenneth Rohde Christiansen</span> (<a class="p-org org h-org"
href="https://intel.com/">英特尔公司</a>)
</dd>
<dd class="editor p-author h-card vcard" data-editor-id="66757">
<span class="p-name fn">Diego González</span> (<a class="p-org org h-org"
href="https://microsoft.com/">微软公司</a>)
</dd>
<dd class="editor p-author h-card vcard" data-editor-id="90918">
<span class="p-name fn">Daniel Murphy</span> (<a class="p-org org h-org"
href="https://www.google.com/">谷歌公司</a>)
</dd>
<dd class="editor p-author h-card vcard" data-editor-id="109589">
<span class="p-name fn">Christian Liebel</span> (<a class="p-org org h-org"
href="https://www.thinktecture.com/">Thinktecture AG</a>)
</dd>
<dt>
前编辑:
</dt>
<dd class="editor p-author h-card vcard" data-editor-id="91260">
<span class="p-name fn">Matt Giuca</span> (<a class="p-org org h-org"
href="https://www.google.com/">谷歌公司</a>) - 截止到 <time datetime="2024-07-01">2024年7月1日</time>
</dd>
<dd class="editor p-author h-card vcard" data-editor-id="41974">
<span class="p-name fn">Anssi Kostiainen</span> (<a class="p-org org h-org"
href="https://intel.com/">英特尔公司</a>) - 截止到 <time datetime="2024-05-10">2024年5月10日</time>
</dd>
<dd class="editor p-author h-card vcard" data-editor-id="43672">
<span class="p-name fn">Aaron Gustafson</span> (<a class="p-org org h-org"
href="https://microsoft.com/">微软公司</a>) - 截止到 <time datetime="2024-05-10">2024年5月10日</time>
</dd>
<dd class="editor p-author h-card vcard">
<span class="p-name fn">Mounir Lamouri</span> (<a class="p-org org h-org"
href="https://www.google.com/">谷歌公司</a>)
</dd>
<dd class="editor p-author h-card vcard">
<span class="p-name fn">Rob Dolin</span> (<a class="p-org org h-org"
href="https://www.microsoft.com/">微软公司</a>)
</dd>
<dt>反馈:</dt>
<dd>
<a href="https://github.com/w3c/manifest/">GitHub w3c/manifest</a>
(<a href="https://github.com/w3c/manifest/pulls/">拉取请求</a>,
<a href="https://github.com/w3c/manifest/issues/new/choose">新问题</a>,
<a href="https://github.com/w3c/manifest/issues/">打开的问题</a>)
</dd>
<dt class="caniuse-title">浏览器支持:</dt>
<dd class="caniuse-stats"><a href="https://caniuse.com/web-app-manifest">caniuse.com</a></dd>
</dl>
</details>
<p class="copyright">
<a href="https://www.w3.org/policies/#copyright">Copyright</a>
©
2024
<a href="https://www.w3.org/">World Wide Web Consortium</a>.
<abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup>
<a href="https://www.w3.org/policies/#Legal_Disclaimer">liability</a>,
<a href="https://www.w3.org/policies/#W3C_Trademarks">trademark</a> and
<a rel="license" href="https://www.w3.org/copyright/software-license-2023/"
title="W3C Software and Document Notice and License">permissive document license</a> rules apply.
</p>
<hr title="头部分隔线">
</div>
<section id="abstract" class="introductory">
<h2>摘要</h2>
<p>
本规范定义了一种基于JSON的文件格式,提供开发人员一个集中位置来放置与网页应用程序相关的元数据。这些元数据包括但不限于网页应用程序的名称、图标链接,以及用户启动网页应用程序时的首选打开URL。清单还允许开发人员声明网页应用程序的默认屏幕方向,并提供设置应用程序显示模式(例如全屏)的能力。此外,清单允许开发人员将网页应用程序“限定”到一个URL。这限制了清单应用的URL范围,并提供了从其他应用程序“深度链接”到网页应用程序的方法。
</p>
<p>
使用这些元数据,用户代理可以为开发人员提供手段,创建更接近原生应用程序的用户体验。
</p>
</section>
<section id="sotd" class="introductory">
<h2>本文件状态</h2>
<p><em>本节描述了该文件在发布时的状态。当前<abbr title="万维网联盟">W3C</abbr>
的出版物列表和该技术报告的最新修订版可以在<a href="https://www.w3.org/TR/"><abbr title="万维网联盟">W3C</abbr>技术报告索引</a>找到,网址为
https://www.w3.org/TR/。</em></p>
<div class="warning" id="issue-container-generatedID">
<div role="heading" class="warning-title marker" id="h-warning" aria-level="3"><span>警告</span></div>
<aside class="">
<p>
实施者需要注意,该规范尚未稳定。然而,该规范的部分内容已在至少一个浏览器中实现(请参见文档顶部的实现状态链接)。<strong>未参与讨论的实施者可能会发现规范在不兼容的情况下发生变化。</strong>有兴趣在该规范最终进入候选推荐阶段之前实施的供应商应<a
href="https://github.com/w3c/manifest/issues">订阅GitHub上的仓库</a>并参与讨论。
</p>
</aside>
</div>
<p>
本文档由<a href="https://www.w3.org/groups/wg/webapps">Web应用程序工作组</a>作为
工作草案使用<a href="https://www.w3.org/policies/process/20231103/#recs-and-notes">推荐路径</a>发布。
</p>
<p>作为工作草案发布并不意味着得到了<abbr title="万维网联盟">W3C</abbr>及其成员的认可。</p>
<p>
这是一个草案文档,可能会随时更新、替换或被其他文档废止。除非作为工作进展引用,否则引用此文档不适合。
</p>