-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
91 lines (80 loc) · 1.83 KB
/
Copy pathoptions.html
File metadata and controls
91 lines (80 loc) · 1.83 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<title>My Preferences Options</title>
<style>
body: { padding: 10px; }
pre {
background-color: ghostwhite;
border: 1px solid silver;
padding: 10px 20px;
margin: 20px;
}
.json-key {
color: brown;
}
.json-value {
color: navy;
}
.json-string {
color: olive;
}
</style>
</head>
<body style="width:1000px;height:500px;">
<!--<div id="content">
</div>
<br/>-->
<label>
JSON Data
<textarea rows="20" cols="70" id="jsonData">
</textarea>
<br />
</label>
<label>
<input type="checkbox" id="tabsBackground">
Open tabs in Background.
<br />
<input type="checkbox" id="highlightTabs">
Highlight tabs with same base url.
<br/>
<input type="checkbox" id="selectAll">
Select all pages (Only for google/yahoo/bing/youtube search results).
<br/>
Page loading time out
<input type="text" id="timeOut" value="30" size="5">
seconds.
<br/>
Tabs to load at a time
<input type="text" id="tabToLoad" value="2" size="5">
<br/>
<!--Load from: Configuration
<input type="radio" name="loadFrom" value="config">
Page
<input type="radio" name="loadFrom" value="page">
Search Sites
<input type="text" id="searchSites" >
(comma seperated site names).-->
</label>
<!--<button id="delete" style="float: right;">Delete</button>
<br/>
<br/>
<label>
<input type="text" id="prefDomain">
Domain.
<br />
<br />
</label>
<label>
<input type="text" id="prefUrl">
Preferred URL.
<br />
<br />
</label>-->
<div id="status"></div>
<div id="error"></div>
<button id="save">Save</button>
<button id="cancel">Cancel</button>
<script src="options.js"></script>
</body>
</html>