-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
52 lines (51 loc) · 3.36 KB
/
Copy pathpopup.html
File metadata and controls
52 lines (51 loc) · 3.36 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
<!-- SimpleCookie, a minimalist yet efficient cookie manager for Firefox -->
<!-- Made with ❤ by micka from Paris -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A minimalist yet efficient cookie manager for Firefox">
<title>SimpleCookie</title>
<link rel="preload" href="resources/icon1.svg" as="image">
<link rel="preload" href="resources/icon6.svg" as="image">
<link rel="preload" href="resources/icon2.svg" as="image">
<link rel="preload" href="resources/icon3.svg" as="image">
<link rel="preload" href="resources/icon4.svg" as="image">
<link rel="preload" href="resources/icon5.svg" as="image">
<link rel="stylesheet" href="popup.css">
<script defer src="popup.js"></script>
</head>
<body>
<div id="popup">
<div id="cookies-container"></div>
<div id="dock-wrapper">
<div id="dock">
<img class="dock-icon" id="icon1" src="resources/icon1.svg" title="⚠️ Delete cookies from closed tabs, keeping only those associated with open tabs (whose domains are written in green). Favorite cookies will not be deleted." aria-label="Delete cookies from closed tabs"/>
<img class="dock-icon" id="icon6" src="resources/icon6.svg" title="⚠️ mySniper → Delete cookies from domains you've configured in the settings. Favorite cookies will not be deleted." aria-label="mySniper - Delete configured domains"/>
<img class="dock-icon" id="icon2" src="resources/icon2.svg" title="⚠️ ⚠️ Delete all cookies stored by Firefox. Favorite cookies will not be deleted." aria-label="Delete all cookies"/>
<img class="dock-icon" id="icon3" src="resources/icon3.svg" title="⚠️ ⚠️ ⚠️ myCleaner → Delete your selection of browsing data that you can select in the settings. Note that selecting 'Cookies' in the myCleaner settings will bypass the favorites protection and delete all cookies WITHOUT exception." aria-label="My Cleaner"/>
<div class="separator"></div>
<a href="settings.html" target="_blank" title="Open the settings." aria-label="Access the configuration settings">
<img class="dock-icon" id="icon4" src="resources/icon4.svg" title="Open the settings."/>
</a>
<img class="dock-icon" id="icon5" src="resources/icon5.svg" title="Undo the very last cookie deletion. You have 20 seconds to do so. Closing the pop-up will prevent recovery. Expired cookies cannot be restored." aria-label="Undo the last cookie deletion"/>
<span id="cookie-counter" class="dock-icon" title="Total number of cookies."></span>
</div>
</div>
</div>
<div id="confirmation-modal" class="modal">
<div class="modal-content">
<p id="confirmation-message"></p>
<div class="modal-buttons">
<button id="confirm-yes" class="icon-button">
<img src="resources/confirm_yes.svg" alt="Confirm Yes" width="35" height="35" />
</button>
<button id="confirm-no" class="icon-button">
<img src="resources/confirm_no.svg" alt="Confirm No" width="35" height="35" />
</button>
</div>
</div>
</div>
</body>
</html>