-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathoptions.html
33 lines (28 loc) · 1.06 KB
/
options.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
<!DOCTYPE html>
<html>
<head><title>My Test Extension Options</title><!-- include js libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.min.js"></script>
<script src="js/app.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-translate/2.7.2/angular-translate.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.15/angular-sanitize.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120784533-2"></script>
<script type="text/javascript" src="js/google-analytics.js"></script>
</head>
<body ng-app="app" ng-controller="Ctrl">
Favorite color:
<select id="color">
<option value="red">red</option>
<option value="green">green</option>
<option value="blue">blue</option>
<option value="yellow">yellow</option>
</select>
<label>
<input type="checkbox" id="like">
I like colors.
</label>
<div id="status"></div>
<button id="save">Save</button>
<script src="options.js"></script>
<script type="text/javascript" src="js/google-analytics.js"></script>
</body>
</html>