Add new certificateProvider extension API.
[chromium-blink-merge.git] / chrome / common / extensions / docs / examples / api / notifications / options.html
blobdf61b37971b563f7c445ba86c441a9624d027fa8
1 <!--
2 Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
6 Brian Kennish <bkennish@chromium.org>
8 An option page for configuring notifications.
9 -->
10 <!doctype html>
11 <html>
12 <head>
13 <title>Notification Demo</title>
14 <link href="style.css" rel="stylesheet" type="text/css">
15 <script src="options.js"></script>
16 </head>
17 <body>
18 <h1>
19 <img src="64.png" alt="Toast">
20 Notification Demo
21 </h1>
22 <h2>Options</h2>
23 <form id="options">
24 <input type="checkbox" name="isActivated" checked>
25 Display a notification every
26 <select name="frequency">
27 <option>1</option>
28 <option>2</option>
29 <option>3</option>
30 <option>4</option>
31 <option>5</option>
32 <option>10</option>
33 <option>15</option>
34 <option>20</option>
35 <option>25</option>
36 <option>30</option>
37 </select>
38 minute(s).
39 </form>
40 </body>
41 </html>