Added fingerprint text

This commit is contained in:
z0ccc 2021-07-22 12:20:38 -04:00
parent 437849fa24
commit ecf786977d
3 changed files with 14 additions and 27 deletions

View file

@ -8,16 +8,4 @@ This extension provides data on multiple different ways you are tracked around t
Only anonymous data will be collected to improve accuracy of the fingerprint analysis. The extension settings allow this to be turned off so once the extension popup is closed all the data is deleted with it. This ensures complete user privacy.
Vytal contains no ads and signup is not required.
Download for Chrome:
https://chrome.google.com/webstore/detail/Vytal/ncbknoohfjmcfneopnfkapmkblaenokb
Download for Firefox:
https://addons.mozilla.org/en-US/firefox/addon/Vytal
Github for Extension:
https://github.com/z0ccc/Vytal-extension
Vytal contains no ads and signup is not required.

View file

@ -107,16 +107,16 @@ const FingerprintBlock = () => {
const hash = md5(JSON.stringify(fingerprintData)).toString();
const tableData = [
{
key: 'hash',
title: 'Hash',
value: hash,
},
{
key: 'name',
title: 'Name',
value: name,
},
{
key: 'hash',
title: 'Hash',
value: hash,
},
];
return (
@ -132,9 +132,10 @@ const FingerprintBlock = () => {
)}
</div>
<p>
<b>Explanation:</b> JavaScript can be used to read various information
about your software. This information can be used to create a
fingerprint.
<b>Explanation:</b> This fingerprint is a unique identifier that can be
used to follow you around the web. Even if you clear cookies, change
your ip or use private mode the fingerprint will stay the same. Enter
your name below and reload the page in private mode to test it out.
</p>
{saved ? (
<p>Success! Re-scan browser.</p>

View file

@ -53,15 +53,13 @@ const LocationBlock = () => {
return (
<ScanBlock>
<h1>Location</h1>
<img src={mapUrl} alt="Map of current location" />
<div style={{ display }}>
<img src={mapUrl} alt="Map of current location" />
<Table data={data} />
<p>
<b>Explanation:</b> JavaScript can be used to read various information
about your software. This information can be used to create a
fingerprint.
</p>
</div>
<p>
<b>Explanation:</b>
</p>
</ScanBlock>
);
};