JeanneDarcalter doxxed

sigmamogger

sigmamogger

Immortal
Joined
Oct 9, 2024
Posts
3,071
Reputation
9,439
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

DR. NICKGA
Replies
81
Views
675
mentally_ill_chad
mentally_ill_chad
Сигма Бой
Replies
13
Views
140
Сигма Бой
Сигма Бой
CorinthianLOX
Replies
6
Views
85
davidlaidisme67
davidlaidisme67
swt
Replies
5
Views
102
True truecel
True truecel
Antipsychotics
Replies
17
Views
211
Error404
Error404

Users who are viewing this thread

Back
Top