Skip to content

maarsalien/frida-android-floating-menu

Repository files navigation

frida-android-floating-menu

A floating menu for Android

Features

  • Switches (toggle on/off)
  • SeekBars (slide to set value)
  • Buttons On/Off (toggle on/off)
  • ButtonLink (click to open link)
  • CheckBoxes (tick to set value)
  • InputNumber (enter number to set value)
  • InputText (enter text to set value)
  • TextViews (display rich text)
  • WebView (display web page with real html/css)

Installation

npm install -D frida-android-floating-menu

Usage

import {Menu, Config,  Primitive as P}  from "frida-android-floating-menu";


const mainActivity = getMainActivity(...);

const menu = new Menu(mainActivity);
menu.attach();

const isGodMode = P.of(false);
const playerSpeed = P.of(0);

menu.Switch("God Mode", isGodMode);
menu.SeekBar("Player Speed", playerSpeed, 0, 100);
...

See the old classes Dex implementation for more examples.

Screenshots

Screenshot

Credits

  • LGLTeam for the original Android-Mod-Menu.