User:Aeywoo/stella

From Support Wiki
Jump to navigation Jump to search
Example of the scripts usage on BlankPage/Stella

This script was created by Sophiedp on the Fandom Developers Wiki and was ported to Wiki.gg under the Creative Commons Attribution-Share Alike License 3.0 (Unported) (CC BY-SA) license, this script is therefore under the same license regardless of any wikis defined license and where otherwise stated.

Stella displays a list of maintenance categories needing attention on the wiki. The list can be found at Special:BlankPage/Stella.

Installation

Because of technical limitations with Wiki.gg you are unable to use scripts cross-wiki natively, this is in stark contrast to other wikifarms like Wikia and Gamepedia however this may change in the future, for now you will need to rely on external sources to load this script cross-wiki, this includes but is not limited to, TamperMonkey and ViolentMonkey being the most popular of the two when it comes to inserting custom JavaScript to the DOM of a specified website via regex. You can use the following example snippets below to load and customise your custom nav links to your liking.

Installation Examples

ViolentMonkey

Using ViolentMonkey you can utilise the below script to not only load the scripts JavaScript and CSS.

Example ViolentMonkey custom script usage:

// ==UserScript==
// @name        Personal Wiki.gg Scripts
// @namespace   Violentmonkey Scripts
// @match       https://*.wiki.gg/*
// @grant       none
// @version     1.0
// @author      Aeywoo
// @description 04/03/2024, 12:29:37 am
// ==/UserScript==
(() => {
    const interval = setInterval(() => {
        if (typeof eval("window?.mw?.loader?.using") != "function") return
        clearInterval(interval);

        mw.loader.load("https://support.wiki.gg/index.php?title=User:Aeywoo/stella.js&action=raw\u0026ctype=text/javascript");

        console.log("All resources finished loading!");
    }, 10);
})();