-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
139 lines (137 loc) · 5.42 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
rel="stylesheet"
/>
<title>Browser APIs</title>
<style>
a.fork-me {
text-decoration: none;
right: 0;
position: fixed;
}
</style>
</head>
<body>
<a href="https://github.com/nmanikiran/browser-apis" class="fork-me">
<img
src="https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png?resize=149%2C149"
class="attachment-full size-full"
alt="Fork me on GitHub"
data-recalc-dims="1"
/>
</a>
<section class="p-2 m-auto sm:w-auto md:w-full lg:w-5/6 xl:w-3/4">
<p class="m-8">
JavaScript APIs for
<a
href="https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API"
>WebExtensions</a
>
can be used inside the extension's background scripts and in any other
documents bundled with the extension, including browser action or page
action popups, sidebars, options pages, or new tab pages. A few of these
APIs can also be accessed by an extension's content scripts (see the
list in the content script guide).
</p>
<div class="bg-white shadow overflow-hidden p-2 m-2">
<div
class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4"
>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./geolocation-api/">
Geolocation API
</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./clipboard-api/">
Clipboard API
</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./camera/"> Camera </a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./drag-drop/"> Drag Drop </a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./storage/"> Storage </a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./wake-lock/"> Wake Lock </a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./intersection-observer/">
Intersection Observer
</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./fullscreen-api/">Fullscreen</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./network-check/">
Network Check
</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./page-visibility/">
Page Visibility API
</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./notification/">Notification</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./matchmedia/">mediaMatch</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./text-to-speech/">
Text-to-Speech
</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./web-share/">Web-share</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./web-speech/">Web-speech</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./dialogs/">Dialog</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./resize-observer/">
Resize Observer
</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./battery/">Battery Status</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./vibration/">Vibration</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./picture-in-picture/">
Picture-in-Picture
</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./broadcast-api/">
Broadcast Channel
</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./screen-orientation/">
Screen Orientation
</a>
</div>
<div class="text-gray-700 text-center bg-gray-400">
<a class="block w-full p-2" href="./touch/"> Touch Events </a>
</div>
</div>
</div>
</section>
</body>
</html>