This repository was archived by the owner on Jul 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
61 lines (61 loc) · 2.14 KB
/
Copy pathpopup.html
File metadata and controls
61 lines (61 loc) · 2.14 KB
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
<!DOCTYPE html>
<!--
百度网盘视频在线加速插件(谷歌浏览器插件)
作者:常轩
时间:2019.07.21
开源协议:GPL
Github :http://github.com/chxcode
网站:http://changxuan.top
公众号:Worldhello
-->
<html lang="zh-CN">
<head>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<meta charset="UTF-8">
<title>百度网盘视频变速器</title>
</head>
<body >
<div id="about">
<div class="header">
<div class="logo">
<img src="images/icon-128.png" width="70"/>
</div>
<div class="logo-content">
<p class="title">网盘视频加速</p>
<p class="sub-title">版本:<span id="versionNumber">1.0.2</span></p>
</div>
</div>
<div id="body">
<div id="developer">
<div class="name">
<span>调整速度:<input type="range" name="points" min="0" max="2" step="any" id="keyword" list="tickmarks"/>
<datalist id="tickmarks">
<option value="0">
<option value="0.25">
<option value="0.5">
<option value="0.75">
<option value="1">
<option value="1.25">
<option value="1.5">
<option value="1.75">
<option value="2">
</datalist>
</span>
</div>
</div>
<br/>
<div style="margin-bottom: 15px;">
<span>使用说明:向前拖动为倍速,向后拖动为慢放</span>
</div>
</div>
<div class="footer">
<div class="popup_copyright">
© 2020 <a target="_blank" href="http://www.changxuan.top/">常轩博客</a> | <a target="_blank" href="https://github.com/chxcode/speeded_video_for_Baidu_Netdisk#author">我要捐助</a>
</div>
<a id="settings" href="#"></a>
</div>
</div>
<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/popup.js"></script>
</body>
</html>