-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpro_test.html
More file actions
31 lines (29 loc) · 1000 Bytes
/
pro_test.html
File metadata and controls
31 lines (29 loc) · 1000 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Disable Cache -->
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
</head>
<body>
<!--<script>
(function () {
setTimeout(function () {
window.requestIdleCallback(() => {
console.log('request idle callback called');
});
}, 5000);
})();
</script>-->
<!-- End Disable Cache -->
<!-- Must be renamed properly to hide it from ad blockers -->
<!-- <script src="app.js"></script> -->
<script>
const script = document.createElement('script');
script.src = 'finger.js?' + (new Date().valueOf());
document.body.appendChild(script);
</script>
</body>
</html>