-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathoptions.html
More file actions
32 lines (32 loc) · 751 Bytes
/
options.html
File metadata and controls
32 lines (32 loc) · 751 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Bypass Options</title>
<style>
#bypass_sites label {
display: block;
}
</style>
</head>
<body>
<div>
Selected sites will have their localStorage and cookies cleared on each
visit and their referer set to "http://www.google.com/". You should
disable sites you have an account with here or else you will be logged out
at every visit.
</div>
<br/>
<div id='bypass_sites'>
</div>
<br/>
<div id="status"></div>
<div id="error"></div>
<br/>
<button id="save">Save</button>
<span style='float:right;'>
<button id="select-all">Select all</button>
<button id="select-none">Select none</button>
</span>
<script src="options.js"></script>
</body>
</html>