Installation
<h1 align="center">🍀 Espejito... My Data 🍀</h1> Small application that displays the data that a web page can obtain </p>This project was made for learning purposes only
- Access to the Website
Finish
- View your data, if you are using VPN it will show another address, if you are using Brave or another browser it may block tracking.
Download
Available for Mac, Linux and Windows.
License
Code Example
#JAVASCRIPT1const container = 2document.getElementById("sections"); 3 4const sections = [ 5 { 6 title: "Estas usando un navegador", 7 content: { 8 Nombre: platform.name, 9 Version: platform.version, 10 Diseño: platform.layout, 11 Idioma: navigator.language, 12 Cookies: navigator.cookieEnabled, 13 "No rastrear": navigator.doNotTrack, 14 Complementos: navigator.plugins?.length, 15 }, 16 }, 17]; 18