-
Notifications
You must be signed in to change notification settings - Fork 12
/
options.html
115 lines (100 loc) · 3.72 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
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
<!DOCTYPE html>
<html>
<head>
<title>vidIQ Vision - Options</title>
<link rel="stylesheet" type="text/css" href="options.css" />
<script src="options.js"></script>
</head>
<body>
<div class="vidiq-options">
<h1>
<img src="images/vidiq_dark.svg" />
<span data-i18n="extensionSettingsTitle">Extension Settings</span>
</h1>
<div class="setting">
<input type="checkbox" id="rating-bar">
<label for="rating-bar" data-i18n="likeToDislikeRatio">
Like to Dislike Ratio
</label>
</div>
<div class="setting">
<input type="checkbox" id="toolbar-stats">
<label for="toolbar-stats" data-i18n="toolbarStatsDropdownTitle">
Toolbar Stats Dropdown
</label>
</div>
<div class="setting">
<input type="checkbox" id="home-page-shortcuts">
<label for="home-page-shortcuts" data-i18n="shortcutsOnHomePage">
Shortcuts on Home Page
</label>
<div class="sub-setting">
<input type="checkbox" id="home-page-shortcuts-competitors">
<label for="home-page-shortcuts-competitors" data-i18n="competitors">
Competitors
</label>
</div>
<div class="sub-setting">
<input type="checkbox" id="home-page-shortcuts-trendalerts">
<label for="home-page-shortcuts-trendalerts" data-i18n="trendAlerts">
Trend Alerts
</label>
</div>
<div class="sub-setting">
<input type="checkbox" id="home-page-shortcuts-mostviewed">
<label for="home-page-shortcuts-mostviewed" data-i18n="researchMostViewed">
Most Viewed
</label>
</div>
<div class="sub-setting">
<input type="checkbox" id="home-page-shortcuts-channelaudit">
<label for="home-page-shortcuts-channelaudit" data-i18n="channelAudit">
Channel Audit
</label>
</div>
<div class="sub-setting">
<input type="checkbox" id="home-page-shortcuts-achievements">
<label for="home-page-shortcuts-achievements" data-i18n="achievementsTitle">
Achievements
</label>
</div>
</div>
<div class="setting">
<input type="checkbox" id="video-manager-shortcuts">
<label for="video-manager-shortcuts" data-i18n="shortcutsOnVideoManager">
Shortcuts on Video Manager
</label>
<div class="sub-setting">
<input type="checkbox" id="video-manager-shortcuts-competitors">
<label for="video-manager-shortcuts-competitors" data-i18n="competitors">
Competitors
</label>
</div>
<div class="sub-setting">
<input type="checkbox" id="video-manager-shortcuts-trendalerts">
<label for="video-manager-shortcuts-trendalerts" data-i18n="trendAlerts">
Trend Alerts
</label>
</div>
<div class="sub-setting">
<input type="checkbox" id="video-manager-shortcuts-mostviewed">
<label for="video-manager-shortcuts-mostviewed" data-i18n="researchMostViewed">
Most Viewed
</label>
</div>
<div class="sub-setting">
<input type="checkbox" id="video-manager-shortcuts-channelaudit">
<label for="video-manager-shortcuts-channelaudit" data-i18n="channelAudit">
Channel Audit
</label>
</div>
<div class="sub-setting">
<input type="checkbox" id="video-manager-shortcuts-achievements">
<label for="video-manager-shortcuts-achievements" data-i18n="achievementsTitle">
Achievements
</label>
</div>
</div>
</div>
</body>
</html>