Skip to content

Instantly share code, notes, and snippets.

View kinalartur's full-sized avatar
🏠
Working from home

Artur kinalartur

🏠
Working from home
  • Lisbon
View GitHub Profile
/* .obsidian/snippets/snippet.css */
/* Base settings for all page width */
.wide-100 .cm-contentContainer, .wide-100 .cm-content, .wide-100 .cm-line,
.wide .cm-contentContainer, .wide .cm-content, .wide .cm-line,
.wide-95 .cm-contentContainer, .wide-95 .cm-content, .wide-95 .cm-line,
.wide-90 .cm-contentContainer, .wide-90 .cm-content, .wide-90 .cm-line,
.wide-85 .cm-contentContainer, .wide-85 .cm-content, .wide-85 .cm-line,
.wide-80 .cm-contentContainer, .wide-80 .cm-content, .wide-80 .cm-line,
@kinalartur
kinalartur / discord-token-logger.js
Created February 17, 2024 16:36 — forked from m-Phoenix852/discord-token-logger.js
Simple script to log in to discord account using token.
let token = "your token";
function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}