User:John Tello/Userscripts/Autofill: Difference between revisions

From Kaboom Wiki
Created page with "<pre> // ==UserScript== // @name KSW cap autofill // @version 1.0.0 // // @match https://kswiki.chipmunk.land/index.php*action=* // @grant none // // @author John Tello // @description Automatically fills in the anti-spam captcha on kswiki.chipmunk.land // ==/UserScript== document.getElementById("wpCaptchaWord").value = "MissingTexture" </pre> How to use: Figure it out"
 
m update domain
 
Line 4: Line 4:
// @version    1.0.0
// @version    1.0.0
//
//
// @match      https://kswiki.chipmunk.land/index.php*action=*
// @match      https://kaboom.wiki/index.php*action=*
// @grant      none
// @grant      none
//
//
// @author      John Tello
// @author      John Tello
// @description Automatically fills in the anti-spam captcha on kswiki.chipmunk.land
// @description Automatically fills in the anti-spam captcha on kaboom.wiki
// ==/UserScript==
// ==/UserScript==



Latest revision as of 05:21, 3 August 2026

// ==UserScript==
// @name        KSW cap autofill
// @version     1.0.0
//
// @match       https://kaboom.wiki/index.php*action=*
// @grant       none
//
// @author      John Tello
// @description Automatically fills in the anti-spam captcha on kaboom.wiki
// ==/UserScript==

document.getElementById("wpCaptchaWord").value = "MissingTexture"

How to use: Figure it out