-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
182 lines (167 loc) · 5.63 KB
/
options.html
File metadata and controls
182 lines (167 loc) · 5.63 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet" />
<title>Web Cleaner Options</title>
</head>
<body class="jumbotron container">
<h1 class="display-4">Web Cleaner</h1>
<img src="cleaning.png" height="120px" width="120px" />
<h3>Choose Data to remove</h3>
<div id="checkboxes">
<div>
<input type="checkbox" id="appcache" name="appcache" class="checkBox" />
<label for="appcache">App Cache</label>
</div>
<div>
<input
type="checkbox"
id="cache"
name="cache"
checked
class="checkBox"
/>
<label for="cache">Cache</label>
</div>
<div>
<input
type="checkbox"
id="cacheStorage"
name="cacheStorage"
class="checkBox"
/>
<label for="cacheStorage">Cache Storage</label>
</div>
<div>
<input type="checkbox" id="cookies" name="cookies" class="checkBox" />
<label for="cookies">Cookies</label>
</div>
<div>
<input
type="checkbox"
id="downloads"
name="downloads"
class="checkBox"
/>
<label for="downloads">Downloads</label>
</div>
<div>
<input
type="checkbox"
id="fileSystems"
name="fileSystems"
class="checkBox"
/>
<label for="fileSystems">File Systems</label>
</div>
<div>
<input type="checkbox" id="formData" name="formData" class="checkBox" />
<label for="formData">Form Data</label>
</div>
<div>
<input type="checkbox" id="history" name="history" class="checkBox" />
<label for="history">History</label>
</div>
<div>
<input
type="checkbox"
id="indexedDB"
name="indexedDB"
class="checkBox"
/>
<label for="indexedDB">Indexed DB</label>
</div>
<div>
<input
type="checkbox"
id="localStorage"
name="localStorage"
class="checkBox"
/>
<label for="localStorage">Local Storage</label>
</div>
<div>
<input
type="checkbox"
id="pluginData"
name="pluginData"
class="checkBox"
/>
<label for="pluginData">Plugin Data</label>
</div>
<div>
<input
type="checkbox"
id="serviceWorkers"
name="serviceWorkers"
class="checkBox"
/>
<label for="serviceWorkers">Service Workers</label>
</div>
<div>
<input type="checkbox" id="webSQL" name="webSQL" class="checkBox" />
<label for="webSQL">Web SQL</label>
</div>
</div>
<h3>Choose Time Period</h3>
<select
class="custom-select"
style="width: 280px"
id="time_period"
name="time_period"
>
<option value="last_hour" selected>Last Hour</option>
<option value="last_24hour">Last 24 Hours</option>
<option value="last_7days">Last 7 Days</option>
<option value="last_4weeks">Last 4 Weeks</option>
<option value="all_time">All Time</option>
</select>
<table width="910" border="0">
<tr>
<td>
<h2 style="font-size: 1.2em;font-family: Arial,sans-serif;padding: 1.5em 0 .5em ;">Web Cleaner Extension 1.1</h2>
<p align="justify">
Web Cleaner is an extension for cleaning Cache, Cookies, History,etc on a single click and is made by <strong>Vipul Pathak</strong>.
</p>
<h4 style="font-size: 0.9em;font-family: Arial,sans-serif;padding: 0;margin:0;"><i>How to use :</i></h4>
<ul>
<li>Web Cleaner delete cookies, history, cache etc. Simply click the toolbar icon and Done.</li>
<ul>However you can change the preference of data to be deleted:
<li> Right click on the toolbar and select options</li>
<li> Select data to delete and time range.</li>
</ul>
</ul>
<h4 style="font-size: 0.9em;font-family: Arial,sans-serif;padding: 1em 0 0;margin-bottom:5px;"><i>Privacy :</i></h4>
<p align="justify">
In order to work properly, Web Cleaner extension requires the permission to access to your history.
However, Web Cleaner do not collect nor will ever transmit any of your private data.
<!-- .. besides, I couldn't care less about your data p -->
</p>
<h4 style="font-size: 0.9em;font-family: Arial,sans-serif;padding: 1em 0 0;margin-bottom:5px;"><i>How to uninstall :</i></h4>
<ol>
<li>Click the wrench icon on the browser toolbar.</li>
<li>Click <strong>Tools</strong>.</li>
<li>Select <strong>Extensions</strong>.</li>
<li>Find the Web Cleaner extension then click <strong>Uninstall</strong>.</li>
</ol>
<h4 style="font-size: 0.9em;font-family: Arial,sans-serif; "><i>Changelog:</i></h4>
<div style="margin-left:15px">
<strong>1.1</strong>: 11/2019 - Initial version.<br />
</div>
</td>
</tr>
</table>
<script type="text/javascript" src="options.js"></script>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>