- Joined
- Jul 1, 2023
- Messages
- 50
- Reaction score
- 66
- Awards
- 7
LV
0
Offline
Tired of mariana's basic backgrounds? With tampermonkey you can now change it by following these very simple steps!!!!
Step 0: Go to the Main Page, click Background Picker and disable "Parallax background?"
Step 1: Download tampermonkey from your browser's addon page
Step 2: Make a new script file
Step 3: Paste this in
Step 4: Enable & refresh
Now your forum should look like this:
I am aware that the original image will show for a brief moment I tried to fix it but I couldn't sorry not sorry
Step 0: Go to the Main Page, click Background Picker and disable "Parallax background?"
Step 1: Download tampermonkey from your browser's addon page
Step 2: Make a new script file
Step 3: Paste this in
JavaScript:
// ==UserScript==
// @name MarianaBay but cooler
// @namespace https://forum.marianabay.com/
// @version 1.0
// @description deez
// @match https://forum.marianabay.com/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
var newImageUrl = 'https://mir-s3-cdn-cf.behance.net/project_modules/max_1200/cfc157151010897.630605bae2329.gif'; // You can change the link to whatever image you want
var newImageElement = new Image();
newImageElement.src = newImageUrl;
newImageElement.onload = function() {
var originalImage = document.getElementById('blurImage1');
if (originalImage) {
originalImage.parentNode.insertBefore(newImageElement, originalImage);
newImageElement.style.display = 'block';
}
};
})();
Now your forum should look like this:

I am aware that the original image will show for a brief moment I tried to fix it but I couldn't sorry not sorry