-
Notifications
You must be signed in to change notification settings - Fork 0
/
socialskip.html
38 lines (35 loc) · 1.15 KB
/
socialskip.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
<!doctype html>
<html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with
value "popup.html".
-->
<head>
<title>SocialSkip for Chrome</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<style>
body {
background-color: #292929;
color:white;
font-size:15pt;
}
input{color:black;}
h1{text-align: center;}
h2{font-size: 80%;}
</style>
<h1><img src="./images/cloud.png" width="80px"><br>SocialSkip</h1>
<button class="btn btn-default" id="btn" >Get Experiment</button>
<input id="videoid" class="text">
<div id="experiment"></div>
<script src="socialskip.js">
</script>
</body>
</html>
<!-- 283616 -->