ADD YKCUL PICTURE TO SMLWIKI.COM/MOVIE

just adds that

// ==UserScript==
// @name         ADD YKCUL PICTURE TO SMLWIKI.COM/MOVIE
// @namespace    http://tampermonkey.net/
// @version      1.7
// @description  just adds that
// @author       smlwiki fan
// @match        https://smlwiki.com/movie/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Create the anchor element
    const anchorElement = document.createElement('a');
    anchorElement.href = 'https://smlwiki.com/7/'; // Update the href to the full URL
    anchorElement.className = 'clickable';

    // Create the image inside the anchor
    const imgElement = document.createElement('img');
    imgElement.src = 'https://files.catbox.moe/hsm5mp.jpg';
    imgElement.style.rotate = '11deg';
    imgElement.style.right = '90px';
    imgElement.style.left = '450px';

    // Append the image to the anchor
    anchorElement.appendChild(imgElement);

    // Append the anchor to the body or a specific container
    const container = document.querySelector('#wall') || document.body;
    container.appendChild(anchorElement);

})();