-
Notifications
You must be signed in to change notification settings - Fork 5
/
popup.html
45 lines (45 loc) · 1.25 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
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css" href="themes.css">
<style type="text/css">
body {
padding: 5px 10px;
height: 170px;
width: 300px;
text-align:center;
}
img{
float:left;
overflow: hidden;
position: relative;
left:-14px;
top: -14px;
}
</style>
<title>Extension Automation Popup</title>
</head>
<body id= "popupTitle">
</br>
<img src= "../icon128.png" width= 70px height = 70px>
<div id = "hoge" >
<h2>Extension Automation</h2>
<form id="popup-form">
<br>
<p>I want to <select id="bEnable">
<option value="Enable">Enable</option>
<option value="Disable">Disable</option>
</select> the extension:<br> <select id = "dropdown_ext_list"></select>
<br> for web addresses with: <input id = "siteURL" type="text" value= "" />
<button id="enterBtn">Enter</button>
</p>
</form>
</div>
<!--WORKING OPTIONS LINK CODE-->
<p><a href = "options.html">View Settings</a></p>
<!--OLD OPTIONS LINK CODE
<p><a id = 'goto1' onClick="window.open(chrome.runtime.getURL('options.html'))" href = "chrome.runtime.getURL('options.html')"> View Settings</a></p>
-->
<script type="text/javascript" src="entries.js"></script>
</body>
</html>