<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[[Mods]Advice on how to make custom Splash Screen]]></title><description><![CDATA[<p dir="auto">So guys, I have a question. How do I make my own custom Splash Screen for an Opera GX mod? I have some ideas for a new mod but I don't know how to carry out them without knowing how to make the splash screen in the first place.</p>
<p dir="auto">From Raiken Sora/Raiden-Z<br />
Owner of mod studio: Zandatsu Interactive</p>
]]></description><link>https://forums.opera.com/topic/74995/mods-advice-on-how-to-make-custom-splash-screen</link><generator>RSS for Node</generator><lastBuildDate>Sun, 12 Jul 2026 05:37:36 GMT</lastBuildDate><atom:link href="https://forums.opera.com/topic/74995.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 25 Nov 2024 15:12:06 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to [Mods]Advice on how to make custom Splash Screen on Sun, 08 Dec 2024 10:52:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/122">@burnout426</a> Thank you, I'll try it out and please let me know if you have created the example mod</p>
]]></description><link>https://forums.opera.com/post/366010</link><guid isPermaLink="true">https://forums.opera.com/post/366010</guid><dc:creator><![CDATA[Raiden-Z]]></dc:creator><pubDate>Sun, 08 Dec 2024 10:52:38 GMT</pubDate></item><item><title><![CDATA[Reply to [Mods]Advice on how to make custom Splash Screen on Fri, 06 Dec 2024 12:22:51 GMT]]></title><description><![CDATA[<p dir="auto">Here's a minimum manifest.json to have a custom splash screen:</p>
<pre><code>{
    "manifest_version": 3,
    "name": "GX Splash",
    "version": "0.1",
    "icons": {
        "512": "512.png"
    },
    "mod": {
        "schema_version": 2,
        "payload": {
            "splash_screen": [
                {
                    "id": "1",
                    "name": "name",
                    "path": "splash.mp4"
                }
            ]
        }
    }
}
</code></pre>
<p dir="auto">From what I've seen, splash.mp4 should be h.264 video (1080 x 1080) + aac audio in an mp4 container. The video duration should be 5 seconds. Other formats (like vp9 video + opus audio in a webm container) and resolutions might be supported too, but that at least is what one mod I tested uses.</p>
]]></description><link>https://forums.opera.com/post/365857</link><guid isPermaLink="true">https://forums.opera.com/post/365857</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Fri, 06 Dec 2024 12:22:51 GMT</pubDate></item><item><title><![CDATA[Reply to [Mods]Advice on how to make custom Splash Screen on Thu, 05 Dec 2024 16:58:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/886099">@Raiden-Z</a> Doesn't look like it. I might make an example mod later that does just a splash screen, but I would just try it out.</p>
]]></description><link>https://forums.opera.com/post/365749</link><guid isPermaLink="true">https://forums.opera.com/post/365749</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Thu, 05 Dec 2024 16:58:13 GMT</pubDate></item><item><title><![CDATA[Reply to [Mods]Advice on how to make custom Splash Screen on Wed, 04 Dec 2024 14:42:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/886099">@Raiden-Z</a> Do i need anything else?</p>
]]></description><link>https://forums.opera.com/post/365641</link><guid isPermaLink="true">https://forums.opera.com/post/365641</guid><dc:creator><![CDATA[Raiden-Z]]></dc:creator><pubDate>Wed, 04 Dec 2024 14:42:12 GMT</pubDate></item><item><title><![CDATA[Reply to [Mods]Advice on how to make custom Splash Screen on Wed, 04 Dec 2024 14:38:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/122">@burnout426</a> Yo man, sorry for late reply but thanks I'll check on it and let you know.</p>
]]></description><link>https://forums.opera.com/post/365640</link><guid isPermaLink="true">https://forums.opera.com/post/365640</guid><dc:creator><![CDATA[Raiden-Z]]></dc:creator><pubDate>Wed, 04 Dec 2024 14:38:31 GMT</pubDate></item><item><title><![CDATA[Reply to [Mods]Advice on how to make custom Splash Screen on Sun, 01 Dec 2024 11:08:15 GMT]]></title><description><![CDATA[<p dir="auto">Install <a href="https://store.gx.me/mods/nsxjip/capybara-party/" target="_blank" rel="noopener noreferrer nofollow ugc">https://store.gx.me/mods/nsxjip/capybara-party/</a> and then goto the URL <code>chrome-extension://poigpnphnhiglllbbecbjlaicccglnpb/manifest.json</code> and look at the <code>splash_screen</code> section. You'll see it's just an mp4 video file that it references.</p>
<p dir="auto">So, use that as an example. (Make sure to use <code>"schema_version": 2</code> for the <code>mod</code> section like that manifest.json does. It's probably needed to support <code>splash_screen</code> and other mods 2.0 stuff.)</p>
]]></description><link>https://forums.opera.com/post/365412</link><guid isPermaLink="true">https://forums.opera.com/post/365412</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Sun, 01 Dec 2024 11:08:15 GMT</pubDate></item><item><title><![CDATA[Reply to [Mods]Advice on how to make custom Splash Screen on Fri, 29 Nov 2024 11:17:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/886099">@Raiden-Z</a> Is it possible to change the splash screen?</p>
]]></description><link>https://forums.opera.com/post/365299</link><guid isPermaLink="true">https://forums.opera.com/post/365299</guid><dc:creator><![CDATA[leocg]]></dc:creator><pubDate>Fri, 29 Nov 2024 11:17:59 GMT</pubDate></item><item><title><![CDATA[Reply to [Mods]Advice on how to make custom Splash Screen on Fri, 29 Nov 2024 10:56:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/886099">@Raiden-Z</a> Raiken Sora here again, can anyone please respond to this? Opera Team, if you see this, please respond.</p>
]]></description><link>https://forums.opera.com/post/365296</link><guid isPermaLink="true">https://forums.opera.com/post/365296</guid><dc:creator><![CDATA[Raiden-Z]]></dc:creator><pubDate>Fri, 29 Nov 2024 10:56:44 GMT</pubDate></item></channel></rss>