fugu-api-data 1.13.0 → 1.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/patterns.js +43 -36
- package/patterns.mjs +43 -36
package/package.json
CHANGED
package/patterns.js
CHANGED
|
@@ -4,7 +4,7 @@ const patterns = {
|
|
|
4
4
|
where: 'JavaScript',
|
|
5
5
|
supported: (async () => 'AbsoluteOrientationSensor' in self)(),
|
|
6
6
|
featureDetection: `(async () => 'AbsoluteOrientationSensor' in self)()`,
|
|
7
|
-
documentation: 'https://
|
|
7
|
+
documentation: 'https://developer.chrome.com/articles/generic-sensor/',
|
|
8
8
|
blinkFeatureID: 1900,
|
|
9
9
|
},
|
|
10
10
|
'Accelerometer': {
|
|
@@ -12,7 +12,7 @@ const patterns = {
|
|
|
12
12
|
where: 'JavaScript',
|
|
13
13
|
supported: (async () => 'Accelerometer' in self)(),
|
|
14
14
|
featureDetection: `(async () => 'Accelerometer' in self)()`,
|
|
15
|
-
documentation: 'https://
|
|
15
|
+
documentation: 'https://developer.chrome.com/articles/generic-sensor/',
|
|
16
16
|
blinkFeatureID: 1899,
|
|
17
17
|
},
|
|
18
18
|
'Add to Home Screen': {
|
|
@@ -29,7 +29,7 @@ const patterns = {
|
|
|
29
29
|
where: 'JavaScript',
|
|
30
30
|
supported: (async () => 'AmbientLightSensor' in self)(),
|
|
31
31
|
featureDetection: `(async () => 'AmbientLightSensor' in self)()`,
|
|
32
|
-
documentation: 'https://
|
|
32
|
+
documentation: 'https://developer.chrome.com/articles/generic-sensor/',
|
|
33
33
|
blinkFeatureID: 1901,
|
|
34
34
|
},
|
|
35
35
|
'Async Clipboard': {
|
|
@@ -76,7 +76,7 @@ const patterns = {
|
|
|
76
76
|
where: 'JavaScript',
|
|
77
77
|
supported: (async () => 'setAppBadge' in navigator)(),
|
|
78
78
|
featureDetection: `(async () => 'setAppBadge' in navigator)()`,
|
|
79
|
-
documentation: 'https://
|
|
79
|
+
documentation: 'https://developer.chrome.com/articles/badging-api/',
|
|
80
80
|
blinkFeatureID: 2726,
|
|
81
81
|
},
|
|
82
82
|
'Cache Storage': {
|
|
@@ -101,7 +101,8 @@ const patterns = {
|
|
|
101
101
|
where: 'JavaScript',
|
|
102
102
|
supported: (async () => 'ComputePressureObserver' in self)(),
|
|
103
103
|
featureDetection: `(async () => 'ComputePressureObserver' in self)()`,
|
|
104
|
-
documentation:
|
|
104
|
+
documentation:
|
|
105
|
+
'https://developer.chrome.com/docs/web-platform/compute-pressure/',
|
|
105
106
|
blinkFeatureID: 3899,
|
|
106
107
|
},
|
|
107
108
|
'Contact Picker': {
|
|
@@ -109,7 +110,7 @@ const patterns = {
|
|
|
109
110
|
where: 'JavaScript',
|
|
110
111
|
supported: (async () => 'contacts' in navigator)(),
|
|
111
112
|
featureDetection: `(async () => 'contacts' in navigator)()`,
|
|
112
|
-
documentation: 'https://
|
|
113
|
+
documentation: 'https://developer.chrome.com/articles/contact-picker/',
|
|
113
114
|
blinkFeatureID: 2993,
|
|
114
115
|
},
|
|
115
116
|
'Content Index': {
|
|
@@ -120,7 +121,8 @@ const patterns = {
|
|
|
120
121
|
'index' in
|
|
121
122
|
((await navigator.serviceWorker?.ready) || self.registration))(),
|
|
122
123
|
featureDetection: `(async () => 'serviceWorker' in navigator && 'index' in (await navigator.serviceWorker?.ready || self.registration))()`,
|
|
123
|
-
documentation:
|
|
124
|
+
documentation:
|
|
125
|
+
'https://developer.chrome.com/articles/content-indexing-api/',
|
|
124
126
|
blinkFeatureID: 2985,
|
|
125
127
|
},
|
|
126
128
|
'Credential Management': {
|
|
@@ -164,7 +166,7 @@ const patterns = {
|
|
|
164
166
|
where: 'JavaScript',
|
|
165
167
|
supported: (async () => 'EyeDropper' in self)(),
|
|
166
168
|
featureDetection: `(async () => 'EyeDropper' in self)()`,
|
|
167
|
-
documentation: 'https://
|
|
169
|
+
documentation: 'https://developer.chrome.com/articles/eyedropper/',
|
|
168
170
|
blinkFeatureID: undefined,
|
|
169
171
|
},
|
|
170
172
|
'File Handling': {
|
|
@@ -173,7 +175,7 @@ const patterns = {
|
|
|
173
175
|
supported: (async () =>
|
|
174
176
|
'launchQueue' in self && 'files' in LaunchParams.prototype)(),
|
|
175
177
|
featureDetection: `(async () => 'launchQueue' in self && 'files' in LaunchParams.prototype)()`,
|
|
176
|
-
documentation: 'https://
|
|
178
|
+
documentation: 'https://developer.chrome.com/articles/file-handling/',
|
|
177
179
|
blinkFeatureID: 3875,
|
|
178
180
|
},
|
|
179
181
|
'File System Access': {
|
|
@@ -182,7 +184,7 @@ const patterns = {
|
|
|
182
184
|
where: 'JavaScript',
|
|
183
185
|
supported: (async () => 'showOpenFilePicker' in self)(),
|
|
184
186
|
featureDetection: `(async () => 'showOpenFilePicker' in self)()`,
|
|
185
|
-
documentation: 'https://
|
|
187
|
+
documentation: 'https://developer.chrome.com/articles/file-system-access/',
|
|
186
188
|
blinkFeatureID: 3340,
|
|
187
189
|
},
|
|
188
190
|
'Origin Private File System': {
|
|
@@ -215,7 +217,7 @@ const patterns = {
|
|
|
215
217
|
where: 'JavaScript',
|
|
216
218
|
supported: (async () => 'GravitySensor' in self)(),
|
|
217
219
|
featureDetection: `(async () => 'GravitySensor' in self)()`,
|
|
218
|
-
documentation: 'https://
|
|
220
|
+
documentation: 'https://developer.chrome.com/articles/generic-sensor/',
|
|
219
221
|
blinkFeatureID: 3795,
|
|
220
222
|
},
|
|
221
223
|
'Gyroscope': {
|
|
@@ -223,7 +225,7 @@ const patterns = {
|
|
|
223
225
|
where: 'JavaScript',
|
|
224
226
|
supported: (async () => 'Gyroscope' in self)(),
|
|
225
227
|
featureDetection: `(async () => 'Gyroscope' in self)()`,
|
|
226
|
-
documentation: 'https://
|
|
228
|
+
documentation: 'https://developer.chrome.com/articles/generic-sensor/',
|
|
227
229
|
blinkFeatureID: 1906,
|
|
228
230
|
},
|
|
229
231
|
'Handwriting Recognition': {
|
|
@@ -231,7 +233,8 @@ const patterns = {
|
|
|
231
233
|
where: 'JavaScript',
|
|
232
234
|
supported: (async () => 'queryHandwritingRecognizerSupport' in navigator)(),
|
|
233
235
|
featureDetection: `(async () => 'queryHandwritingRecognizerSupport' in navigator)()`,
|
|
234
|
-
documentation:
|
|
236
|
+
documentation:
|
|
237
|
+
'https://developer.chrome.com/docs/web-platform/handwriting-recognition/',
|
|
235
238
|
blinkFeatureID: 3893,
|
|
236
239
|
},
|
|
237
240
|
'HapticsDevice': {
|
|
@@ -248,7 +251,7 @@ const patterns = {
|
|
|
248
251
|
where: 'JavaScript',
|
|
249
252
|
supported: (async () => 'IdleDetector' in self)(),
|
|
250
253
|
featureDetection: `(async () => 'IdleDetector' in self)()`,
|
|
251
|
-
documentation: 'https://
|
|
254
|
+
documentation: 'https://developer.chrome.com/articles/idle-detection/',
|
|
252
255
|
blinkFeatureID: 2834,
|
|
253
256
|
},
|
|
254
257
|
'Ink': {
|
|
@@ -268,7 +271,7 @@ const patterns = {
|
|
|
268
271
|
'MediaStreamTrackGenerator' in self)(),
|
|
269
272
|
featureDetection: `(async () => 'MediaStreamTrackProcessor' in self && 'MediaStreamTrackGenerator' in self)()`,
|
|
270
273
|
documentation:
|
|
271
|
-
'https://
|
|
274
|
+
'https://developer.chrome.com/articles/mediastreamtrack-insertable-media-processing/',
|
|
272
275
|
blinkFeatureID: 3729,
|
|
273
276
|
},
|
|
274
277
|
'Launch Handler': {
|
|
@@ -277,7 +280,8 @@ const patterns = {
|
|
|
277
280
|
supported: (async () =>
|
|
278
281
|
'launchQueue' in self && 'targetURL' in LaunchParams.prototype)(),
|
|
279
282
|
featureDetection: `(async () => 'launchQueue' in self && 'targetURL' in LaunchParams.prototype)()`,
|
|
280
|
-
documentation:
|
|
283
|
+
documentation:
|
|
284
|
+
'https://developer.chrome.com/docs/web-platform/launch-handler/',
|
|
281
285
|
blinkFeatureID: undefined,
|
|
282
286
|
},
|
|
283
287
|
'Linear Acceleration Sensor': {
|
|
@@ -285,7 +289,7 @@ const patterns = {
|
|
|
285
289
|
where: 'JavaScript',
|
|
286
290
|
supported: (async () => 'LinearAccelerationSensor' in self)(),
|
|
287
291
|
featureDetection: `(async () => 'LinearAccelerationSensor' in self)()`,
|
|
288
|
-
documentation: 'https://
|
|
292
|
+
documentation: 'https://developer.chrome.com/articles/generic-sensor/',
|
|
289
293
|
blinkFeatureID: 2051,
|
|
290
294
|
},
|
|
291
295
|
'Local Font Access': {
|
|
@@ -293,7 +297,7 @@ const patterns = {
|
|
|
293
297
|
where: 'JavaScript',
|
|
294
298
|
supported: (async () => 'queryLocalFonts' in self)(),
|
|
295
299
|
featureDetection: `(async () => 'queryLocalFonts' in self)()`,
|
|
296
|
-
documentation: 'https://
|
|
300
|
+
documentation: 'https://developer.chrome.com/articles/local-fonts/',
|
|
297
301
|
blinkFeatureID: 4211,
|
|
298
302
|
},
|
|
299
303
|
'Magnetometer': {
|
|
@@ -301,7 +305,7 @@ const patterns = {
|
|
|
301
305
|
where: 'JavaScript',
|
|
302
306
|
supported: (async () => 'Magnetometer' in self)(),
|
|
303
307
|
featureDetection: `(async () => 'Magnetometer' in self)()`,
|
|
304
|
-
documentation: 'https://
|
|
308
|
+
documentation: 'https://developer.chrome.com/articles/generic-sensor/',
|
|
305
309
|
blinkFeatureID: 1907,
|
|
306
310
|
},
|
|
307
311
|
'Media Capabilities': {
|
|
@@ -328,7 +332,8 @@ const patterns = {
|
|
|
328
332
|
where: 'JavaScript',
|
|
329
333
|
supported: (async () => 'getScreens' in self)(),
|
|
330
334
|
featureDetection: `(async () => 'getScreens' in self)()`,
|
|
331
|
-
documentation:
|
|
335
|
+
documentation:
|
|
336
|
+
'https://developer.chrome.com/articles/multi-screen-window-placement/',
|
|
332
337
|
blinkFeatureID: 3388,
|
|
333
338
|
},
|
|
334
339
|
'Navigation Preload': {
|
|
@@ -365,7 +370,8 @@ const patterns = {
|
|
|
365
370
|
where: 'JavaScript',
|
|
366
371
|
supported: (async () => 'PeriodicSyncManager' in self)(),
|
|
367
372
|
featureDetection: `(async () => 'PeriodicSyncManager' in self)()`,
|
|
368
|
-
documentation:
|
|
373
|
+
documentation:
|
|
374
|
+
'https://developer.chrome.com/articles/periodic-background-sync/',
|
|
369
375
|
blinkFeatureID: 2931,
|
|
370
376
|
},
|
|
371
377
|
'Persistent Storage': {
|
|
@@ -402,7 +408,8 @@ const patterns = {
|
|
|
402
408
|
where: 'Web App Manifest',
|
|
403
409
|
supported: (async () => undefined)(),
|
|
404
410
|
featureDetection: `(async () => undefined)()`,
|
|
405
|
-
documentation:
|
|
411
|
+
documentation:
|
|
412
|
+
'https://developer.chrome.com/articles/url-protocol-handler/',
|
|
406
413
|
blinkFeatureID: 3884,
|
|
407
414
|
},
|
|
408
415
|
'Push': {
|
|
@@ -421,7 +428,7 @@ const patterns = {
|
|
|
421
428
|
where: 'JavaScript',
|
|
422
429
|
supported: (async () => 'RelativeOrientationSensor' in self)(),
|
|
423
430
|
featureDetection: `(async () => 'RelativeOrientationSensor' in self)()`,
|
|
424
|
-
documentation: 'https://
|
|
431
|
+
documentation: 'https://developer.chrome.com/articles/generic-sensor/',
|
|
425
432
|
blinkFeatureID: 2019,
|
|
426
433
|
},
|
|
427
434
|
'Screen Wake Lock': {
|
|
@@ -429,7 +436,7 @@ const patterns = {
|
|
|
429
436
|
where: 'JavaScript',
|
|
430
437
|
supported: (async () => 'wakeLock' in navigator)(),
|
|
431
438
|
featureDetection: `(async () => 'wakeLock' in navigator)()`,
|
|
432
|
-
documentation: 'https://
|
|
439
|
+
documentation: 'https://developer.chrome.com/articles/wake-lock/',
|
|
433
440
|
blinkFeatureID: 3005,
|
|
434
441
|
},
|
|
435
442
|
'Service Worker': {
|
|
@@ -446,7 +453,7 @@ const patterns = {
|
|
|
446
453
|
where: 'JavaScript',
|
|
447
454
|
supported: (async () => 'BarcodeDetector' in self)(),
|
|
448
455
|
featureDetection: `(async () => 'BarcodeDetector' in self)()`,
|
|
449
|
-
documentation: 'https://
|
|
456
|
+
documentation: 'https://developer.chrome.com/articles/shape-detection/',
|
|
450
457
|
blinkFeatureID: 3711,
|
|
451
458
|
},
|
|
452
459
|
'Shape Detection (Faces)': {
|
|
@@ -454,7 +461,7 @@ const patterns = {
|
|
|
454
461
|
where: 'JavaScript',
|
|
455
462
|
supported: (async () => 'FaceDetector' in self)(),
|
|
456
463
|
featureDetection: `(async () => 'FaceDetector' in self)()`,
|
|
457
|
-
documentation: 'https://
|
|
464
|
+
documentation: 'https://developer.chrome.com/articles/shape-detection/',
|
|
458
465
|
blinkFeatureID: 3712,
|
|
459
466
|
},
|
|
460
467
|
'Shape Detection (Texts)': {
|
|
@@ -462,7 +469,7 @@ const patterns = {
|
|
|
462
469
|
where: 'JavaScript',
|
|
463
470
|
supported: (async () => 'TextDetector' in self)(),
|
|
464
471
|
featureDetection: `(async () => 'TextDetector' in self)()`,
|
|
465
|
-
documentation: 'https://
|
|
472
|
+
documentation: 'https://developer.chrome.com/articles/shape-detection/',
|
|
466
473
|
blinkFeatureID: 3713,
|
|
467
474
|
},
|
|
468
475
|
'Shortcuts': {
|
|
@@ -530,7 +537,7 @@ const patterns = {
|
|
|
530
537
|
where: 'Web App Manifest',
|
|
531
538
|
supported: (async () => undefined)(),
|
|
532
539
|
featureDetection: `(async () => undefined)()`,
|
|
533
|
-
documentation: 'https://
|
|
540
|
+
documentation: 'https://developer.chrome.com/articles/web-share-target/',
|
|
534
541
|
blinkFeatureID: undefined,
|
|
535
542
|
},
|
|
536
543
|
'Web Share Target (Files)': {
|
|
@@ -538,7 +545,7 @@ const patterns = {
|
|
|
538
545
|
where: 'Web App Manifest',
|
|
539
546
|
supported: (async () => undefined)(),
|
|
540
547
|
featureDetection: `(async () => undefined)()`,
|
|
541
|
-
documentation: 'https://
|
|
548
|
+
documentation: 'https://developer.chrome.com/articles/web-share-target/',
|
|
542
549
|
blinkFeatureID: undefined,
|
|
543
550
|
},
|
|
544
551
|
'WebBluetooth': {
|
|
@@ -546,7 +553,7 @@ const patterns = {
|
|
|
546
553
|
where: 'JavaScript',
|
|
547
554
|
supported: (async () => 'bluetooth' in navigator)(),
|
|
548
555
|
featureDetection: `(async () => 'bluetooth' in navigator)()`,
|
|
549
|
-
documentation: 'https://
|
|
556
|
+
documentation: 'https://developer.chrome.com/articles/bluetooth/',
|
|
550
557
|
blinkFeatureID: 1670,
|
|
551
558
|
},
|
|
552
559
|
'WebCodecs': {
|
|
@@ -554,7 +561,7 @@ const patterns = {
|
|
|
554
561
|
where: 'JavaScript',
|
|
555
562
|
supported: (async () => 'MediaStreamTrackProcessor' in self)(),
|
|
556
563
|
featureDetection: `(async () => 'MediaStreamTrackProcessor' in self)()`,
|
|
557
|
-
documentation: 'https://
|
|
564
|
+
documentation: 'https://developer.chrome.com/articles/webcodecs/',
|
|
558
565
|
blinkFeatureID: 3728,
|
|
559
566
|
},
|
|
560
567
|
'WebGPU': {
|
|
@@ -562,7 +569,7 @@ const patterns = {
|
|
|
562
569
|
where: 'JavaScript',
|
|
563
570
|
supported: (async () => 'gpu' in navigator)(),
|
|
564
571
|
featureDetection: `(async () => 'gpu' in navigator)()`,
|
|
565
|
-
documentation: 'https://
|
|
572
|
+
documentation: 'https://developer.chrome.com/docs/web-platform/webgpu/',
|
|
566
573
|
blinkFeatureID: 3888,
|
|
567
574
|
},
|
|
568
575
|
'WebHID': {
|
|
@@ -570,7 +577,7 @@ const patterns = {
|
|
|
570
577
|
where: 'JavaScript',
|
|
571
578
|
supported: (async () => 'hid' in navigator)(),
|
|
572
579
|
featureDetection: `(async () => 'hid' in navigator)()`,
|
|
573
|
-
documentation: 'https://
|
|
580
|
+
documentation: 'https://developer.chrome.com/articles/hid/',
|
|
574
581
|
blinkFeatureID: 2866,
|
|
575
582
|
},
|
|
576
583
|
'WebMIDI': {
|
|
@@ -603,7 +610,7 @@ const patterns = {
|
|
|
603
610
|
where: 'JavaScript',
|
|
604
611
|
supported: (async () => 'serial' in navigator)(),
|
|
605
612
|
featureDetection: `(async () => 'serial' in navigator)()`,
|
|
606
|
-
documentation: 'https://
|
|
613
|
+
documentation: 'https://developer.chrome.com/articles/serial/',
|
|
607
614
|
blinkFeatureID: 2546,
|
|
608
615
|
},
|
|
609
616
|
'WebSocketStream': {
|
|
@@ -611,7 +618,7 @@ const patterns = {
|
|
|
611
618
|
where: 'JavaScript',
|
|
612
619
|
supported: (async () => 'WebSocketStream' in self)(),
|
|
613
620
|
featureDetection: `(async () => 'WebSocketStream' in self)()`,
|
|
614
|
-
documentation: 'https://
|
|
621
|
+
documentation: 'https://developer.chrome.com/articles/websocketstream/',
|
|
615
622
|
blinkFeatureID: 3018,
|
|
616
623
|
},
|
|
617
624
|
'WebTransport': {
|
|
@@ -627,7 +634,7 @@ const patterns = {
|
|
|
627
634
|
where: 'JavaScript',
|
|
628
635
|
supported: (async () => 'usb' in navigator)(),
|
|
629
636
|
featureDetection: `(async () => 'usb' in navigator)()`,
|
|
630
|
-
documentation: 'https://
|
|
637
|
+
documentation: 'https://developer.chrome.com/articles/usb/',
|
|
631
638
|
blinkFeatureID: 1520,
|
|
632
639
|
},
|
|
633
640
|
'Window Controls Overlay': {
|
package/patterns.mjs
CHANGED
|
@@ -4,7 +4,7 @@ export default {
|
|
|
4
4
|
where: 'JavaScript',
|
|
5
5
|
supported: (async () => 'AbsoluteOrientationSensor' in self)(),
|
|
6
6
|
featureDetection: `(async () => 'AbsoluteOrientationSensor' in self)()`,
|
|
7
|
-
documentation: 'https://
|
|
7
|
+
documentation: 'https://developer.chrome.com/articles/generic-sensor/',
|
|
8
8
|
blinkFeatureID: 1900,
|
|
9
9
|
},
|
|
10
10
|
'Accelerometer': {
|
|
@@ -12,7 +12,7 @@ export default {
|
|
|
12
12
|
where: 'JavaScript',
|
|
13
13
|
supported: (async () => 'Accelerometer' in self)(),
|
|
14
14
|
featureDetection: `(async () => 'Accelerometer' in self)()`,
|
|
15
|
-
documentation: 'https://
|
|
15
|
+
documentation: 'https://developer.chrome.com/articles/generic-sensor/',
|
|
16
16
|
blinkFeatureID: 1899,
|
|
17
17
|
},
|
|
18
18
|
'Add to Home Screen': {
|
|
@@ -29,7 +29,7 @@ export default {
|
|
|
29
29
|
where: 'JavaScript',
|
|
30
30
|
supported: (async () => 'AmbientLightSensor' in self)(),
|
|
31
31
|
featureDetection: `(async () => 'AmbientLightSensor' in self)()`,
|
|
32
|
-
documentation: 'https://
|
|
32
|
+
documentation: 'https://developer.chrome.com/articles/generic-sensor/',
|
|
33
33
|
blinkFeatureID: 1901,
|
|
34
34
|
},
|
|
35
35
|
'Async Clipboard': {
|
|
@@ -76,7 +76,7 @@ export default {
|
|
|
76
76
|
where: 'JavaScript',
|
|
77
77
|
supported: (async () => 'setAppBadge' in navigator)(),
|
|
78
78
|
featureDetection: `(async () => 'setAppBadge' in navigator)()`,
|
|
79
|
-
documentation: 'https://
|
|
79
|
+
documentation: 'https://developer.chrome.com/articles/badging-api/',
|
|
80
80
|
blinkFeatureID: 2726,
|
|
81
81
|
},
|
|
82
82
|
'Cache Storage': {
|
|
@@ -101,7 +101,8 @@ export default {
|
|
|
101
101
|
where: 'JavaScript',
|
|
102
102
|
supported: (async () => 'ComputePressureObserver' in self)(),
|
|
103
103
|
featureDetection: `(async () => 'ComputePressureObserver' in self)()`,
|
|
104
|
-
documentation:
|
|
104
|
+
documentation:
|
|
105
|
+
'https://developer.chrome.com/docs/web-platform/compute-pressure/',
|
|
105
106
|
blinkFeatureID: 3899,
|
|
106
107
|
},
|
|
107
108
|
'Contact Picker': {
|
|
@@ -109,7 +110,7 @@ export default {
|
|
|
109
110
|
where: 'JavaScript',
|
|
110
111
|
supported: (async () => 'contacts' in navigator)(),
|
|
111
112
|
featureDetection: `(async () => 'contacts' in navigator)()`,
|
|
112
|
-
documentation: 'https://
|
|
113
|
+
documentation: 'https://developer.chrome.com/articles/contact-picker/',
|
|
113
114
|
blinkFeatureID: 2993,
|
|
114
115
|
},
|
|
115
116
|
'Content Index': {
|
|
@@ -120,7 +121,8 @@ export default {
|
|
|
120
121
|
'index' in
|
|
121
122
|
((await navigator.serviceWorker?.ready) || self.registration))(),
|
|
122
123
|
featureDetection: `(async () => 'serviceWorker' in navigator && 'index' in (await navigator.serviceWorker?.ready || self.registration))()`,
|
|
123
|
-
documentation:
|
|
124
|
+
documentation:
|
|
125
|
+
'https://developer.chrome.com/articles/content-indexing-api/',
|
|
124
126
|
blinkFeatureID: 2985,
|
|
125
127
|
},
|
|
126
128
|
'Credential Management': {
|
|
@@ -164,7 +166,7 @@ export default {
|
|
|
164
166
|
where: 'JavaScript',
|
|
165
167
|
supported: (async () => 'EyeDropper' in self)(),
|
|
166
168
|
featureDetection: `(async () => 'EyeDropper' in self)()`,
|
|
167
|
-
documentation: 'https://
|
|
169
|
+
documentation: 'https://developer.chrome.com/articles/eyedropper/',
|
|
168
170
|
blinkFeatureID: undefined,
|
|
169
171
|
},
|
|
170
172
|
'File Handling': {
|
|
@@ -173,7 +175,7 @@ export default {
|
|
|
173
175
|
supported: (async () =>
|
|
174
176
|
'launchQueue' in self && 'files' in LaunchParams.prototype)(),
|
|
175
177
|
featureDetection: `(async () => 'launchQueue' in self && 'files' in LaunchParams.prototype)()`,
|
|
176
|
-
documentation: 'https://
|
|
178
|
+
documentation: 'https://developer.chrome.com/articles/file-handling/',
|
|
177
179
|
blinkFeatureID: 3875,
|
|
178
180
|
},
|
|
179
181
|
'File System Access': {
|
|
@@ -182,7 +184,7 @@ export default {
|
|
|
182
184
|
where: 'JavaScript',
|
|
183
185
|
supported: (async () => 'showOpenFilePicker' in self)(),
|
|
184
186
|
featureDetection: `(async () => 'showOpenFilePicker' in self)()`,
|
|
185
|
-
documentation: 'https://
|
|
187
|
+
documentation: 'https://developer.chrome.com/articles/file-system-access/',
|
|
186
188
|
blinkFeatureID: 3340,
|
|
187
189
|
},
|
|
188
190
|
'Origin Private File System': {
|
|
@@ -215,7 +217,7 @@ export default {
|
|
|
215
217
|
where: 'JavaScript',
|
|
216
218
|
supported: (async () => 'GravitySensor' in self)(),
|
|
217
219
|
featureDetection: `(async () => 'GravitySensor' in self)()`,
|
|
218
|
-
documentation: 'https://
|
|
220
|
+
documentation: 'https://developer.chrome.com/articles/generic-sensor/',
|
|
219
221
|
blinkFeatureID: 3795,
|
|
220
222
|
},
|
|
221
223
|
'Gyroscope': {
|
|
@@ -223,7 +225,7 @@ export default {
|
|
|
223
225
|
where: 'JavaScript',
|
|
224
226
|
supported: (async () => 'Gyroscope' in self)(),
|
|
225
227
|
featureDetection: `(async () => 'Gyroscope' in self)()`,
|
|
226
|
-
documentation: 'https://
|
|
228
|
+
documentation: 'https://developer.chrome.com/articles/generic-sensor/',
|
|
227
229
|
blinkFeatureID: 1906,
|
|
228
230
|
},
|
|
229
231
|
'Handwriting Recognition': {
|
|
@@ -231,7 +233,8 @@ export default {
|
|
|
231
233
|
where: 'JavaScript',
|
|
232
234
|
supported: (async () => 'queryHandwritingRecognizerSupport' in navigator)(),
|
|
233
235
|
featureDetection: `(async () => 'queryHandwritingRecognizerSupport' in navigator)()`,
|
|
234
|
-
documentation:
|
|
236
|
+
documentation:
|
|
237
|
+
'https://developer.chrome.com/docs/web-platform/handwriting-recognition/',
|
|
235
238
|
blinkFeatureID: 3893,
|
|
236
239
|
},
|
|
237
240
|
'HapticsDevice': {
|
|
@@ -248,7 +251,7 @@ export default {
|
|
|
248
251
|
where: 'JavaScript',
|
|
249
252
|
supported: (async () => 'IdleDetector' in self)(),
|
|
250
253
|
featureDetection: `(async () => 'IdleDetector' in self)()`,
|
|
251
|
-
documentation: 'https://
|
|
254
|
+
documentation: 'https://developer.chrome.com/articles/idle-detection/',
|
|
252
255
|
blinkFeatureID: 2834,
|
|
253
256
|
},
|
|
254
257
|
'Ink': {
|
|
@@ -268,7 +271,7 @@ export default {
|
|
|
268
271
|
'MediaStreamTrackGenerator' in self)(),
|
|
269
272
|
featureDetection: `(async () => 'MediaStreamTrackProcessor' in self && 'MediaStreamTrackGenerator' in self)()`,
|
|
270
273
|
documentation:
|
|
271
|
-
'https://
|
|
274
|
+
'https://developer.chrome.com/articles/mediastreamtrack-insertable-media-processing/',
|
|
272
275
|
blinkFeatureID: 3729,
|
|
273
276
|
},
|
|
274
277
|
'Launch Handler': {
|
|
@@ -277,7 +280,8 @@ export default {
|
|
|
277
280
|
supported: (async () =>
|
|
278
281
|
'launchQueue' in self && 'targetURL' in LaunchParams.prototype)(),
|
|
279
282
|
featureDetection: `(async () => 'launchQueue' in self && 'targetURL' in LaunchParams.prototype)()`,
|
|
280
|
-
documentation:
|
|
283
|
+
documentation:
|
|
284
|
+
'https://developer.chrome.com/docs/web-platform/launch-handler/',
|
|
281
285
|
blinkFeatureID: undefined,
|
|
282
286
|
},
|
|
283
287
|
'Linear Acceleration Sensor': {
|
|
@@ -285,7 +289,7 @@ export default {
|
|
|
285
289
|
where: 'JavaScript',
|
|
286
290
|
supported: (async () => 'LinearAccelerationSensor' in self)(),
|
|
287
291
|
featureDetection: `(async () => 'LinearAccelerationSensor' in self)()`,
|
|
288
|
-
documentation: 'https://
|
|
292
|
+
documentation: 'https://developer.chrome.com/articles/generic-sensor/',
|
|
289
293
|
blinkFeatureID: 2051,
|
|
290
294
|
},
|
|
291
295
|
'Local Font Access': {
|
|
@@ -293,7 +297,7 @@ export default {
|
|
|
293
297
|
where: 'JavaScript',
|
|
294
298
|
supported: (async () => 'queryLocalFonts' in self)(),
|
|
295
299
|
featureDetection: `(async () => 'queryLocalFonts' in self)()`,
|
|
296
|
-
documentation: 'https://
|
|
300
|
+
documentation: 'https://developer.chrome.com/articles/local-fonts/',
|
|
297
301
|
blinkFeatureID: 4211,
|
|
298
302
|
},
|
|
299
303
|
'Magnetometer': {
|
|
@@ -301,7 +305,7 @@ export default {
|
|
|
301
305
|
where: 'JavaScript',
|
|
302
306
|
supported: (async () => 'Magnetometer' in self)(),
|
|
303
307
|
featureDetection: `(async () => 'Magnetometer' in self)()`,
|
|
304
|
-
documentation: 'https://
|
|
308
|
+
documentation: 'https://developer.chrome.com/articles/generic-sensor/',
|
|
305
309
|
blinkFeatureID: 1907,
|
|
306
310
|
},
|
|
307
311
|
'Media Capabilities': {
|
|
@@ -328,7 +332,8 @@ export default {
|
|
|
328
332
|
where: 'JavaScript',
|
|
329
333
|
supported: (async () => 'getScreens' in self)(),
|
|
330
334
|
featureDetection: `(async () => 'getScreens' in self)()`,
|
|
331
|
-
documentation:
|
|
335
|
+
documentation:
|
|
336
|
+
'https://developer.chrome.com/articles/multi-screen-window-placement/',
|
|
332
337
|
blinkFeatureID: 3388,
|
|
333
338
|
},
|
|
334
339
|
'Navigation Preload': {
|
|
@@ -365,7 +370,8 @@ export default {
|
|
|
365
370
|
where: 'JavaScript',
|
|
366
371
|
supported: (async () => 'PeriodicSyncManager' in self)(),
|
|
367
372
|
featureDetection: `(async () => 'PeriodicSyncManager' in self)()`,
|
|
368
|
-
documentation:
|
|
373
|
+
documentation:
|
|
374
|
+
'https://developer.chrome.com/articles/periodic-background-sync/',
|
|
369
375
|
blinkFeatureID: 2931,
|
|
370
376
|
},
|
|
371
377
|
'Persistent Storage': {
|
|
@@ -402,7 +408,8 @@ export default {
|
|
|
402
408
|
where: 'Web App Manifest',
|
|
403
409
|
supported: (async () => undefined)(),
|
|
404
410
|
featureDetection: `(async () => undefined)()`,
|
|
405
|
-
documentation:
|
|
411
|
+
documentation:
|
|
412
|
+
'https://developer.chrome.com/articles/url-protocol-handler/',
|
|
406
413
|
blinkFeatureID: 3884,
|
|
407
414
|
},
|
|
408
415
|
'Push': {
|
|
@@ -421,7 +428,7 @@ export default {
|
|
|
421
428
|
where: 'JavaScript',
|
|
422
429
|
supported: (async () => 'RelativeOrientationSensor' in self)(),
|
|
423
430
|
featureDetection: `(async () => 'RelativeOrientationSensor' in self)()`,
|
|
424
|
-
documentation: 'https://
|
|
431
|
+
documentation: 'https://developer.chrome.com/articles/generic-sensor/',
|
|
425
432
|
blinkFeatureID: 2019,
|
|
426
433
|
},
|
|
427
434
|
'Screen Wake Lock': {
|
|
@@ -429,7 +436,7 @@ export default {
|
|
|
429
436
|
where: 'JavaScript',
|
|
430
437
|
supported: (async () => 'wakeLock' in navigator)(),
|
|
431
438
|
featureDetection: `(async () => 'wakeLock' in navigator)()`,
|
|
432
|
-
documentation: 'https://
|
|
439
|
+
documentation: 'https://developer.chrome.com/articles/wake-lock/',
|
|
433
440
|
blinkFeatureID: 3005,
|
|
434
441
|
},
|
|
435
442
|
'Service Worker': {
|
|
@@ -446,7 +453,7 @@ export default {
|
|
|
446
453
|
where: 'JavaScript',
|
|
447
454
|
supported: (async () => 'BarcodeDetector' in self)(),
|
|
448
455
|
featureDetection: `(async () => 'BarcodeDetector' in self)()`,
|
|
449
|
-
documentation: 'https://
|
|
456
|
+
documentation: 'https://developer.chrome.com/articles/shape-detection/',
|
|
450
457
|
blinkFeatureID: 3711,
|
|
451
458
|
},
|
|
452
459
|
'Shape Detection (Faces)': {
|
|
@@ -454,7 +461,7 @@ export default {
|
|
|
454
461
|
where: 'JavaScript',
|
|
455
462
|
supported: (async () => 'FaceDetector' in self)(),
|
|
456
463
|
featureDetection: `(async () => 'FaceDetector' in self)()`,
|
|
457
|
-
documentation: 'https://
|
|
464
|
+
documentation: 'https://developer.chrome.com/articles/shape-detection/',
|
|
458
465
|
blinkFeatureID: 3712,
|
|
459
466
|
},
|
|
460
467
|
'Shape Detection (Texts)': {
|
|
@@ -462,7 +469,7 @@ export default {
|
|
|
462
469
|
where: 'JavaScript',
|
|
463
470
|
supported: (async () => 'TextDetector' in self)(),
|
|
464
471
|
featureDetection: `(async () => 'TextDetector' in self)()`,
|
|
465
|
-
documentation: 'https://
|
|
472
|
+
documentation: 'https://developer.chrome.com/articles/shape-detection/',
|
|
466
473
|
blinkFeatureID: 3713,
|
|
467
474
|
},
|
|
468
475
|
'Shortcuts': {
|
|
@@ -530,7 +537,7 @@ export default {
|
|
|
530
537
|
where: 'Web App Manifest',
|
|
531
538
|
supported: (async () => undefined)(),
|
|
532
539
|
featureDetection: `(async () => undefined)()`,
|
|
533
|
-
documentation: 'https://
|
|
540
|
+
documentation: 'https://developer.chrome.com/articles/web-share-target/',
|
|
534
541
|
blinkFeatureID: undefined,
|
|
535
542
|
},
|
|
536
543
|
'Web Share Target (Files)': {
|
|
@@ -538,7 +545,7 @@ export default {
|
|
|
538
545
|
where: 'Web App Manifest',
|
|
539
546
|
supported: (async () => undefined)(),
|
|
540
547
|
featureDetection: `(async () => undefined)()`,
|
|
541
|
-
documentation: 'https://
|
|
548
|
+
documentation: 'https://developer.chrome.com/articles/web-share-target/',
|
|
542
549
|
blinkFeatureID: undefined,
|
|
543
550
|
},
|
|
544
551
|
'WebBluetooth': {
|
|
@@ -546,7 +553,7 @@ export default {
|
|
|
546
553
|
where: 'JavaScript',
|
|
547
554
|
supported: (async () => 'bluetooth' in navigator)(),
|
|
548
555
|
featureDetection: `(async () => 'bluetooth' in navigator)()`,
|
|
549
|
-
documentation: 'https://
|
|
556
|
+
documentation: 'https://developer.chrome.com/articles/bluetooth/',
|
|
550
557
|
blinkFeatureID: 1670,
|
|
551
558
|
},
|
|
552
559
|
'WebCodecs': {
|
|
@@ -554,7 +561,7 @@ export default {
|
|
|
554
561
|
where: 'JavaScript',
|
|
555
562
|
supported: (async () => 'MediaStreamTrackProcessor' in self)(),
|
|
556
563
|
featureDetection: `(async () => 'MediaStreamTrackProcessor' in self)()`,
|
|
557
|
-
documentation: 'https://
|
|
564
|
+
documentation: 'https://developer.chrome.com/articles/webcodecs/',
|
|
558
565
|
blinkFeatureID: 3728,
|
|
559
566
|
},
|
|
560
567
|
'WebGPU': {
|
|
@@ -562,7 +569,7 @@ export default {
|
|
|
562
569
|
where: 'JavaScript',
|
|
563
570
|
supported: (async () => 'gpu' in navigator)(),
|
|
564
571
|
featureDetection: `(async () => 'gpu' in navigator)()`,
|
|
565
|
-
documentation: 'https://
|
|
572
|
+
documentation: 'https://developer.chrome.com/docs/web-platform/webgpu/',
|
|
566
573
|
blinkFeatureID: 3888,
|
|
567
574
|
},
|
|
568
575
|
'WebHID': {
|
|
@@ -570,7 +577,7 @@ export default {
|
|
|
570
577
|
where: 'JavaScript',
|
|
571
578
|
supported: (async () => 'hid' in navigator)(),
|
|
572
579
|
featureDetection: `(async () => 'hid' in navigator)()`,
|
|
573
|
-
documentation: 'https://
|
|
580
|
+
documentation: 'https://developer.chrome.com/articles/hid/',
|
|
574
581
|
blinkFeatureID: 2866,
|
|
575
582
|
},
|
|
576
583
|
'WebMIDI': {
|
|
@@ -603,7 +610,7 @@ export default {
|
|
|
603
610
|
where: 'JavaScript',
|
|
604
611
|
supported: (async () => 'serial' in navigator)(),
|
|
605
612
|
featureDetection: `(async () => 'serial' in navigator)()`,
|
|
606
|
-
documentation: 'https://
|
|
613
|
+
documentation: 'https://developer.chrome.com/articles/serial/',
|
|
607
614
|
blinkFeatureID: 2546,
|
|
608
615
|
},
|
|
609
616
|
'WebSocketStream': {
|
|
@@ -611,7 +618,7 @@ export default {
|
|
|
611
618
|
where: 'JavaScript',
|
|
612
619
|
supported: (async () => 'WebSocketStream' in self)(),
|
|
613
620
|
featureDetection: `(async () => 'WebSocketStream' in self)()`,
|
|
614
|
-
documentation: 'https://
|
|
621
|
+
documentation: 'https://developer.chrome.com/articles/websocketstream/',
|
|
615
622
|
blinkFeatureID: 3018,
|
|
616
623
|
},
|
|
617
624
|
'WebTransport': {
|
|
@@ -627,7 +634,7 @@ export default {
|
|
|
627
634
|
where: 'JavaScript',
|
|
628
635
|
supported: (async () => 'usb' in navigator)(),
|
|
629
636
|
featureDetection: `(async () => 'usb' in navigator)()`,
|
|
630
|
-
documentation: 'https://
|
|
637
|
+
documentation: 'https://developer.chrome.com/articles/usb/',
|
|
631
638
|
blinkFeatureID: 1520,
|
|
632
639
|
},
|
|
633
640
|
'Window Controls Overlay': {
|