@sl_1503/browser-fingerprinting
Version:
A browser-based fingerprinting utility to collect and send device/browser info.
18 lines (16 loc) • 473 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Browser Fingerprint</title>
</head>
<body>
<h2 style="text-align:left; margin-top: 2rem; font-family:'Times New Roman', Times, serif ;">
Open the browser console to see your fingerprint data.
</h2>
<script type="module">
import { getFingerprint } from './dist/index.js';
getFingerprint().then(console.log);
</script>
</body>
</html>