Domain changed to archive.palanq.win . Feb 14-25 still awaits import.
[3 / 1 / 3]

ID:bm3/kP7N No.16801922 View ViewReplyOriginalReport
>// ==UserScript==
>// @name /bant/ CAPTCHA Aligner
>// @namespace /bant/CAPTCHA
>// @description Automatically aligns the letters of the CAPTCHA on 4chan's /bant/ board
>// @include https://boards.4chan.org/bant/*
>// @version 1.0
>// @grant none
>// @run-at document-idle
>// ==/UserScript==
>
>(function() {
> 'use strict';
>
> // Get the CAPTCHA element
> const captcha = document.querySelector('.captcha-img');
> if (!captcha) return;
>
> // Set the CAPTCHA image to display as a block
> captcha.style.display = 'block';
> captcha.style.margin = '0 auto';
>})();