Auth Data Grabber

Provides PPJS Auth data

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Auth Data Grabber
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Provides PPJS Auth data
// @author       Symmettry
// @match        https://pixelplace.io/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=pixelplace.io
// @license      MIT
// @grant        none
// ==/UserScript==
 
const boardID = parseInt(window.location.pathname.substring(1));
 
setTimeout(() => {
    const cookies = document.cookie.split(";").map(n => n.split("=").map(n => n.trim()));
    prompt("Copy this", `bot boardID=${boardID} authKey="${cookies.find(([n]) => n == "authKey")[1]}" authId="${cookies.find(([n]) => n == "authId")[1]}" authToken="${cookies.find(([n]) => n == "authToken")[1]}"`);
}, 2000);