-
Notifications
You must be signed in to change notification settings - Fork 0
/
navigator.html
63 lines (54 loc) · 1.77 KB
/
navigator.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
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cookie Manager</title>
</head>
<body>
<h1>Info</h1>
<h2>User Agent Information</h2>
<p id="userAgentInfo">User Agent: </p>
<h2>Cookie Manager</h2>
<button onclick="addCookie()">Add Cookie</button>
<table id="cookieTable">
<tr>
<th>Name</th>
<th>Value</th>
<th>Action</th>
</tr>
</table>
<script>
function addCookie() {
const cookieName = prompt('Enter the cookie name:');
const cookieValue = prompt('Enter the cookie value:');
document.cookie = `${cookieName}=${cookieValue}`;
displayCookies();
}
function deleteCookie(cookieName) {
document.cookie = `${cookieName}=; expires=Thu, 01 Jan 1970 00:00:00 UTC;`;
displayCookies();
}
function displayCookies() {
const cookieTable = document.getElementById('cookieTable');
cookieTable.innerHTML = '<tr><th>Name</th><th>Value</th><th>Action</th></tr>';
document.cookie.split('; ').forEach(cookie => {
const [name, value] = cookie.split('=');
const row = document.createElement('tr');
row.innerHTML = `
<td>${name}</td>
<td>${value}</td>
<td><button onclick="deleteCookie('${name}')">Delete</button></td>
`;
cookieTable.appendChild(row);
});
}
window.addEventListener('load', () => {
displayCookies();
const userAgentInfo = navigator.userAgent;
document.getElementById('userAgentInfo').textContent = `User Agent: ${userAgentInfo}`;
});
</script>
</body>
</html>