SMLWiki - The Collab! on smlwiki.com/movie

Adds The Collab! to the Episodes page.

// ==UserScript==
// @name         SMLWiki - The Collab! on smlwiki.com/movie
// @namespace    https://greasyfork.org/en/users/1434767
// @version      2.0
// @description  Adds The Collab! to the Episodes page.
// @author       BoyOHBoy
// @match        https://smlwiki.com/movie/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const anchorElement = document.createElement('a');
    anchorElement.href = 'https://smlwiki.com/page/collab';
    anchorElement.className = 'clickable';

    const imgElement = document.createElement('img');
    imgElement.src = 'https://files.boyohboy.xyz/episodes/t-collab.jpg';
    imgElement.style.rotate = '-10deg';
    imgElement.style.left = '250px';

    anchorElement.appendChild(imgElement);

    const container = document.querySelector('#wall') || document.body;
    container.appendChild(anchorElement);
})();