Fixed safari issues

This commit is contained in:
z0ccc 2021-07-27 23:40:26 -04:00
parent f09fc865e5
commit 4dc74db8fc
3 changed files with 6 additions and 12 deletions

View file

@ -1,11 +1,7 @@
# Vytal # Vytal
Vytal is a browser extension that shows you what trackers see. Vytal shows you what traces your browser leaves behind while surfing the web. This scan allows you to understand how easy it is to identify and track your browser even while using private mode.
Browsers reveal bits of identifiable information to websites. This data can be combined into a digital fingerprint which can be used to follow you around the web. Knowing what info is being revealed can help you obscure your fingerprint. This application is built with a react frontend and a django backend.
This extension provides data on multiple different ways you are tracked around the web. Such as information on your software settings like browser version and language. As well as hardware specifications like screen resolution and device memory. Vytal contains no ads and signup is not required.
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.

View file

@ -57,7 +57,7 @@ const HardwareBlock = () => {
{ {
key: 'maxTouchpoints', key: 'maxTouchpoints',
title: 'Max touchpoints', title: 'Max touchpoints',
value: navigator.maxTouchPoints, value: navigator.maxTouchPoints || 0,
}, },
{ {
key: 'webGLVendor', key: 'webGLVendor',

View file

@ -52,10 +52,8 @@
} }
.logo { .logo {
display: flex;
width: 270px; width: 270px;
height: auto; margin: 0 0 14px 0;
margin: 0 0 18px 0;
} }
.contentBlock { .contentBlock {
@ -231,7 +229,7 @@ input[type='text'] {
.logo { .logo {
width: 185px; width: 185px;
margin: 0 0 12px 0; margin: 0 0 8px 0;
} }
h1 { h1 {