您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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); })();