Skip to content

Instantly share code, notes, and snippets.

View kaiserdj's full-sized avatar
💻
Programando cosas ;)

Kaiserdj kaiserdj

💻
Programando cosas ;)
View GitHub Profile
@kaiserdj
kaiserdj / Barra_abajo_socialanime.user.js
Last active December 20, 2018 18:38
Barra abajo socialanime
// ==UserScript==
// @name Barra abajo socialanime
// @namespace http://tampermonkey.net/
// @version 0.4
// @description La barra principal de SocialAnime se pone abajo
// @author Kaiserdj
// @match https://socialani.me/*
// @grant none
// @require http://code.jquery.com/jquery-3.3.1.js
// @updateURL https://gist.github.com/kaiserdj/4a169fdef25615daa75a222b416c3752/raw/bcfba67735e1a0f635a1a7ffa77c624c0c841975/Barra_abajo_socialanime.user.js

Keybase proof

I hereby claim:

  • I am kaiserdj on github.
  • I am kaiserdj (https://keybase.io/kaiserdj) on keybase.
  • I have a public key ASA4e8HUXORM_9xCpyp_XBjaNxlOh0xqCKREj09cy3KFFAo

To claim this, I am signing this object:

{
"name": "Launch",
"author": "Kaiserdj",
"version": "0.0.9",
"minVersion": "1.13.17 beta 56",
"supportedVersion": "1.13.17 beta 68",
"features": [
"eu.darkbot.popcorn.def.Launch"
],
"download": "https://github.com/darkbot-reloaded/DefaultPlugin/releases/download/v1.6.2/DefaultPlugin.jar",
@kaiserdj
kaiserdj / 1234.js
Last active December 29, 2021 09:43
(async () => await api.injectCss(`
#console span
{
white-space: pre;
font-family: monospace;
width: 720px;
display: block;
}
div#header_start_btn
@kaiserdj
kaiserdj / multiwn.js
Last active September 9, 2021 18:22
Simultaneously open multiple clients
//⎛⎝ Kaiserdj™ ⎠⎞#6430
//https://github.com/kaiserdj/Darkorbit-client
//https://discord.gg/vHqAaxS7xF
document.getElementById("imprint_ingame").insertAdjacentHTML('beforebegin', '<br><div id="multiwn" style="text-align: left; position: absolute; left: 30px; height: 15px;"><label for="numwn">Number of clients:</label><input type="text" id="numwn" name="numwn" required value="5"></input> <button id="runwn">START</button></div>')
document.getElementById("runwn").onclick = () => {
let numwin = document.getElementById("numwn").value;
for(let i=0; i<numwin; i++) {
@kaiserdj
kaiserdj / logger.js
Created December 28, 2021 11:25
Example plugin Packet logger
//⎛⎝ Kaiserdj™ ⎠⎞#6430
//https://github.com/kaiserdj/Darkorbit-client
//https://discord.gg/vHqAaxS7xF
//It is necessary to activate the function "(BETA) Run Darkorbit packet logger - by Tanoshii" in Settings
//
//Custom js
//match: *action=internalMapRevolution*
console.log("Plugin packet logger activated");