-
-
Notifications
You must be signed in to change notification settings - Fork 894
/
popup.html
125 lines (122 loc) · 5.71 KB
/
popup.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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<title>catCatch</title>
<link rel="stylesheet" type="text/css" href="css/public.css" media="all" />
<link rel="stylesheet" type="text/css" href="css/popup.css" media="all" />
<script src="js/init.js"></script>
<script src="lib/jquery.min.js"></script>
<script src="js/function.js"></script>
</head>
<body>
<div class="Tabs">
<div id="currentTab" class="TabButton flex Active">
<span data-i18n-outer="currentPage"></span>
<div id="quantity"></div>
</div>
<div id="allTab" class="TabButton flex">
<span data-i18n-outer="otherPage"></span>
<div id="quantity"></div>
</div>
<div id="otherTab" class="TabButton">
<span data-i18n-outer="otherFeatures"></span> / <span data-i18n-outer="mediaControl"></span>
</div>
<div id="maybeKeyTab" class="TabButton hide">
<span data-i18n-outer="possibleKey"></span>
</div>
</div>
<div id="Tips" data-i18n="loadingData">
</div>
<div id="TipsFixed">~</div>
<div id="mediaList" class="container hide TabShow"></div>
<div id="allMediaList" class="container hide"></div>
<div id="otherOptions" class="container hide">
<div class="otherTips" data-i18n="mediaControl"></div>
<div class="flexRow">
<b class="nowrap" data-i18n="selectWebpage"></b>
<select id="videoTabIndex">
<option value="-1" id="videoTabTips" data-i18n="noMediaDetected"></option>
</select>
</div>
<div class="flexRow">
<b class="nowrap" data-i18n="selectMedia"></b>
<select id="videoIndex">
<option value="-1" id="videoIndexTips" data-i18n="noControllableMediaDetected"></option>
</select>