-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
40 lines (28 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<meta http-equiv="X-WebKit-CSP" content="default-src 'self'; script-src 'self'"><meta charset="utf-8" />
<link rel="stylesheet" href="popup.css" />
<title>Audio Swichter</title>
<!--<style>
body {
background-color: #f2f2f2;
}
.frame_btn{background-position: center;background-repeat: no-repeat;height: 100%; width: 350px}
.frame{background-position: center;background-repeat: no-repeat;height: 100%; width: 100%}
<div id="frame_btn" class="frame_btn" >
<center></center>
</div>
</style> -->
</head>
<body>
<div id="frame2" class="frame" role="radiogroup" >
<span class="align-right">
<input id="btn_settings" type="image" src="/images/main-settings.png">
</span>
</div>
<script type="text/javascript" src="/popup.js"></script>
</body>
</html>