-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
62 lines (56 loc) · 2.21 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
<!doctype 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".
-->
<html>
<head>
<title>Tab Meister Popup</title>
<style>
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 100%;
/*background-color: #9e9e9e;*/
}
#inputKeyword {
margin: 5px 0px 10px 0px; /* top right bottom left */
width: 150px;
}
.buttons {
width: 74px;
margin: 0px 0px 2.5px 0px;
}
#guardarAllInvisible {
width: 150px;
}
.inputInvisible {
width: 70px;
margin: 0px 0px 2.5px 0px;
}
</style>
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
</head>
<body>
Keyword: <input type="text" id="inputKeyword" name="fname" placeholder="Enter a keyword">
<input id="separar" class="buttons" type="button" value="Separate" title="Separate the tabs that match your keyword in a new window" disabled>
<input id="guardar" class="buttons" type="button" value="Save" title="Saves the tabs that match your keyword in a bookmark folder" disabled>
<input id="merge" class="buttons" type="button" value="Merge all" title="Merges all your tabs and windows into a single new window">
<input id="guardarAll" class="buttons" type="button" value="Save all" title="Saves all your tabs in a bookmark folder">
<div id="guardarAllInvisible">
<p>Choose a name for the bookmark folder where all tabs are going to be stored</p>
<input type="text" class="inputInvisible" id="inputName" value="All Tabs">
<input id="Confirm" class="inputInvisible" type="button" value="Confirm">
</div>
<script src="Scripts/functions.js" type="text/JavaScript"></script>
<div id = "invisibleTxtBox">
<p id ="invTxtBox" type = "text" name = "mensaje" style = "color:green;"></p>
</div>
</body>
</html>