Splash Screens for Opera GX Mods

Customize the splash screen that appears when Opera GX loads your mod.

Splash screens are a great way to customize the loading experience of your mod. You can use splash screens to add a personal touch to your mod, or to make it more visually appealing. This guide will show you how to add splash screens to your Opera GX mod.

Adding Splash Screens to Your Mod

To add splash screens to your mod, you need to create a splash screen pack and update your manifest.json file to include the splash screen pack. Follow the steps below to add splash screens to your mod.

Create a Splash Screen Pack

  • Create a new folder in your mod project and name it splash.
  • Add your splash screens to the splash folder. You can use any video format for your splash screens, but we recommend using MP4 files for best results.
  • For best visual quality, use a resolution of 1080x1080 pixels.
  • Keep the duration of each splash screen between 3 to 5 seconds.

Update manifest.json

Add the following code to your manifest.json file to define your splash screen pack.

manifest.json
{
  "splash_screen": [
    {
      "id": "0",
      "name": "My Splash Screen Pack",
      "path": "splash/splash1.mp4"
    }
  ]
}

Replace My Splash Screen Pack with the name of your splash screen pack and splash1.mp4 with the name of your splash screen.

Tips

  • You can add multiple splash screens to your splash screen pack by adding additional entries to the splash_screen array in your manifest.json file.