JeanneDarcalter doxxed

sigmamogger

sigmamogger

Immortal
Joined
Oct 9, 2024
Posts
3,089
Reputation
9,213
IMG 20250427 101113
 
  • JFL
Reactions: JeanneDArcAlter, loyolaxavvierretard and rrm_ss2
@JeanneDArcAlter aka Jacquavious
 
  • JFL
Reactions: JeanneDArcAlter and sigmamogger
// ==UserScript==
// @Name Looksmax.org Time Spent
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Tracks how much time you spent on the website
// @Author Looksmax.org/@Filler
// @match https://looksmax.org/*
// @Grant none
// ==/UserScript==

(function() {
'use strict';
function format(sec) { // Format time (HH:MM:SS}
const hours = Math.floor(sec / 3600);
const minutes = Math.floor((sec % 3600) / 60);
const secs = sec % 60;
return `${String(hours).padStart(2, '0')}:${String(minutes).padStart(2, '0')}:${String(secs).padStart(2, '0')}`;
}

// Puts text under logo
const logo = document.querySelector('img[alt="Looksmax.org - Men\'s Self-Improvement & Aesthetics"]');

if (logo) {
const timediv = document.createElement('div');
timediv.id = 'time-spent';
timediv.style.fontSize = '14px';
timediv.style.fontWeight = 'bold';
timediv.style.marginTop = '10px';
timediv.style.textAlign = 'center';
logo.parentElement.appendChild(timediv);
let spent = parseInt(localStorage.getItem('timeSpent')) || 0; // stores the time in localStorage
function upd() {
spent++;
localStorage.setItem('timeSpent', spent);
timediv.textContent = `Time Spent: ${format(spent)}`;
}
setInterval(upd, 1000);
upd();
}
})();
 
  • JFL
Reactions: sigmamogger and loyolaxavvierretard

Similar threads

highinhibcel
Replies
17
Views
248
heightmaxxing
heightmaxxing
Vincent Freeman
Replies
5
Views
98
iblameCopecels
iblameCopecels
Elias De Poot
Replies
6
Views
86
Hitlerstopguy05
Hitlerstopguy05
enriquecuador
Replies
0
Views
63
enriquecuador
enriquecuador
neverlookback
Replies
0
Views
45
neverlookback
neverlookback

Users who are viewing this thread

Back
Top