OP 27 March, 2026 - 10:55 PM
Simple temporary fix for the redirect issue affecting profiles, threads, and some sections.
This will automatically redirect any cracked.st links to cracked.ax when you click them.
Step 1 – Install Tampermonkey
Install Tampermonkey from the official site:
https://www.tampermonkey.net/
After installing, open Tampermonkey and create a new script.
Step 2 – Create a New Script
1. Click the Tampermonkey icon (in extensions)
2. Click Create a new script
3. Delete everything in the editor
4. Paste the script below
Step 3 – Paste This Script
Step 4 – Save and refresh cracked.ax
Press Ctrl + S or File → Save and make sure the script is enabled in Tampermonkey.
Temporary fix until it's fixed server-side.
Have a fantastic rest of your day sir!
This will automatically redirect any cracked.st links to cracked.ax when you click them.
Step 1 – Install Tampermonkey
Install Tampermonkey from the official site:
https://www.tampermonkey.net/
After installing, open Tampermonkey and create a new script.
Step 2 – Create a New Script
1. Click the Tampermonkey icon (in extensions)
2. Click Create a new script
3. Delete everything in the editor
4. Paste the script below
Step 3 – Paste This Script
Code:
// ==UserScript==
// @name Cracked Redirecting TempFix
// @match *://cracked.st/*
// @match *://cracked.st/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.addEventListener('click', function(e) {
let link = e.target.closest('a');
if (!link) return;
let url = link.href;
if (url.includes('cracked.st')) {
e.preventDefault();
let newUrl = url.replace('cracked.st', 'cracked.ax');
window.location.href = newUrl;
}
});
})();Step 4 – Save and refresh cracked.ax
Press Ctrl + S or File → Save and make sure the script is enabled in Tampermonkey.
Temporary fix until it's fixed server-side.
Have a fantastic rest of your day sir!
![[Image: WEcKbCO.png]](https://i.imgur.com/WEcKbCO.png)