blob: 25d7554868fdda856f9eb101eb328d304c646a97 (
plain)
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
|
<!DOCTYPE html>
<meta name=help href="https://privacycg.github.io/storage-partitioning/">
<title>Helper frame</title>
<script>
const usageDetails = async () => {
return (await navigator.storage.estimate())
.usageDetails.serviceWorkerRegistrations || 0
}
let details = {};
window.addEventListener("message", async event => {
if (event.data === "get-details") {
details.source = "same-site";
details.init = await usageDetails();
event.source.postMessage(details, event.source.origin);
}
});
window.addEventListener("load", async () => {
if (parent.opener) {
details.source = "cross-site";
details.init = await usageDetails();
parent.opener.postMessage(details, parent.opener.origin);
}
});
window.parent.postMessage("iframe-is-ready", window.parent.origin);
</script>
|