Sleazy Fork is available in English.

auto-confirm for goto links socialmediagirls.com

auto-confirm for "Goto link confirmation"

// ==UserScript==
// @name        auto-confirm for goto links socialmediagirls.com
// @namespace   Violentmonkey Scripts
// @match       https://forums.socialmediagirls.com/goto/link-confirmation*
// @license     MIT
// @author      smartacephale
// @grant       none
// @version     1.0
// @author      -
// @description auto-confirm for "Goto link confirmation"
// ==/UserScript==

function ready() {
  document.querySelector('.formInfoRow--confirm a')?.click();
}

ready();
document.addEventListener("DOMContentLoaded", ready);