Auth Data Grabber

Provides PPJS Auth data

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==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);