-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
117 lines (93 loc) · 3.43 KB
/
help.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>help</title>
<script>
function log(message) {
console.log(message);
document.getElementById("log").innerHTML += message + "<br>";
}
navigator.getBattery().then((battery) => {
function updateAllBatteryInfo() {
updateChargeInfo();
updateLevelInfo();
updateChargingInfo();
updateDischargingInfo();
}
updateAllBatteryInfo();
battery.addEventListener("chargingchange", () => {
updateChargeInfo();
});
function updateChargeInfo() {
log(`Battery charging? ${battery.charging ? "Yes" : "No"}`);
}
battery.addEventListener("levelchange", () => {
updateLevelInfo();
});
function updateLevelInfo() {
log(`Battery level: ${battery.level * 100}%`);
}
battery.addEventListener("chargingtimechange", () => {
updateChargingInfo();
});
function updateChargingInfo() {
log(`Battery charging time: ${battery.chargingTime} seconds`);
}
battery.addEventListener("dischargingtimechange", () => {
updateDischargingInfo();
});
function updateDischargingInfo() {
log(`Battery discharging time: ${battery.dischargingTime} seconds`);
}
addEventListener("devicemotion", ondevicemotion);
function ondevicemotion(event) {
console.log(event);
log(`Acceleration along the X-axis: ${event.accelerationIncludingGravity.x}`);
log(`Acceleration along the Y-axis: ${event.accelerationIncludingGravity.y}`);
log(`Acceleration along the Z-axis: ${event.accelerationIncludingGravity.z}`);
}
addEventListener("deviceorientation", ondeviceorientation);
function ondeviceorientation(event) {
log(`Z-axis: ${event.alpha}`);
log(`X-axis: ${event.beta}`);
log(`Y-axis: ${event.gamma}`);
}
/** log user agent */
log(`User agent: ${navigator.userAgent}`);
/** log current time */
log(`Current time: ${new Date().toLocaleTimeString()}`);
log(`Device Memory: ${navigator.deviceMemory}`);
log(`Hardware Concurrency: ${navigator.hardwareConcurrency}`);
log(`Max Touch Points: ${navigator.maxTouchPoints}`);
/** OS version, is in iframe, is mobile, is robot, is 64 bit, is language */
log(`OS: ${navigator.oscpu}`);
log (`Platform: ${navigator.platform}`);
log(`Product: ${navigator.product}`);
log(`Product Sub: ${navigator.productSub}`);
log(`Vendor: ${navigator.vendor}`);
log(`Vendor Sub: ${navigator.vendorSub}`);
log(`Language: ${navigator.language}`);
log(`Languages: ${navigator.languages}`);
log(`Cookie Enabled: ${navigator.cookieEnabled}`);
log(`Do Not Track: ${navigator.doNotTrack}`);
log(`OnLine: ${navigator.onLine}`);
log(`Service Worker Controller: ${navigator.serviceWorker.controller}`);
log(`Service Worker Ready: ${navigator.serviceWorker.ready}`);
log(`Storage: ${navigator.storage}`);
log(`Storage Estimate: ${navigator.storage.estimate()}`);
log(`Web Driver: ${navigator.webdriver}`);
/** mouse position */
addEventListener("mousemove", onmousemove);
function onmousemove(event) {
log(`Mouse X: ${event.clientX}`);
log(`Mouse Y: ${event.clientY}`);
}
});
</script>
</head>
<body>
<h1>browser</h1>
<p id="log"></p>
</body>
</html>