Greasy Fork is available in English.

Abnormal Menu

This is a JavaScript script that creates a menu for scripts.

Dieses Skript sollte nicht direkt installiert werden. Es handelt sich hier um eine Bibliothek für andere Skripte, welche über folgenden Befehl in den Metadaten eines Skriptes eingebunden wird // @require https://update.greasyfork.org/scripts/462013/1164920/Abnormal%20Menu.js

Autor
anonimbiri
Version
0.0.1.20230322163349
Erstellt am
17.03.2023
Letzte Aktualisierung
22.03.2023
Lizenz
n/a

Abnormal Menu

Abnormal Menu is a JavaScript library for creating customizable menus. It provides various components such as buttons, switches, select menus, and file drops.

Installation

You can include Anormal Menu in your script project by adding the script header below to your Tampermonkey script file:

// @require https://greasyfork.org/scripts/462013-abnormal-menu/code/Abnormal%20Menu.js?version=1164919

Usage

To create a menu, simply call the CreateMenu function and pass in an object with the following properties:

  • title: The title of the menu.
  • startX: The x-coordinate of the starting position of the menu.
  • startY: The y-coordinate of the starting position of the menu.
  • width: The width of the menu.
  • height: The height of the menu.
  • pin: Whether or not the menu should be pinned to the screen.
var menu = new CreateMenu({
    title: "Menu Title",
    startX: 10,
    startY: 10,
    width: 600,
    height: 600,
    pin: true
});

Documentation

For more information and examples, please refer to the official documentation: Abnormal Menu Documentation

I hope this helps! Let me know if you have any other questions.