Skip to content

Adding Apps and Games

Toast edited this page Mar 2, 2025 · 2 revisions


Where to find Apps and Games

Apps are found at public/assets/data/apps.js Games are found at public/assets/data/games.js

Adding a New App/Game

Follow this format for adding an app.

{
    "id": "Id goes here",
    "title": "Title goes here.",
    "url": "URL link goes here.",
    "image": 'Icon link goes here.',
    "description": "Description goes here.",
    'img': 'Cover image link goes here.'
},

Follow this format for adding a game.

{
    id: 'Id goes here',
    title: 'Title goes here.',
    description: 'Description goes here.',
    url: 'Game link goes here.',
    image: 'Icon link goes here.'
  },

Ids should always be lowercase with no spaces, dashes, and underscores. If the app/game doesn't function properly, try adding uv: false. This disables Ultraviolet and allows the game to run without a proxy.

Clone this wiki locally