ABCya Mod Bar

Adds a mod bar with various modes to ABCya website

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         ABCya Mod Bar
// @description  Adds a mod bar with various modes to ABCya website
// @match        https://www.abcya.com/*
// @version 0.0.1.20230527020350
// @namespace https://greatest.deepsurf.us/users/1085312
// ==/UserScript==

(function() {
    'use strict';

    // Create a mod bar container
    const modBar = document.createElement('div');
    modBar.id = 'modBar';
    document.body.appendChild(modBar);

    // Create buttons for each mode
    const debugButton = document.createElement('button');
    debugButton.textContent = 'Debug Mode';
    modBar.appendChild(debugButton);

    const errorButton = document.createElement('button');
    errorButton.textContent = 'Error Mode';
    modBar.appendChild(errorButton);

    const outputButton = document.createElement('button');
    outputButton.textContent = 'Output Mode';
    modBar.appendChild(outputButton);

    const scriptButton = document.createElement('button');
    scriptButton.textContent = 'Script Mode';
    modBar.appendChild(scriptButton);

    const syncButton = document.createElement('button');
    syncButton.textContent = 'Sync Mode';
    modBar.appendChild(syncButton);

    // Event listeners for each mode button
    debugButton.addEventListener('click', function() {
        // Enable debug mode logic
        // Add your code here for enabling debug mode
    });

    errorButton.addEventListener('click', function() {
        // Enable error mode logic
        // Add your code here for enabling error mode
    });

    outputButton.addEventListener('click', function() {
        // Enable output mode logic
        // Add your code here for enabling output mode
    });

    scriptButton.addEventListener('click', function() {
        // Enable script mode logic
        // Add your code here for enabling script mode
    });

    syncButton.addEventListener('click', function() {
        // Enable sync mode logic
        // Add your code here for enabling sync mode
    });

})();