<?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[White filter on top of youtube videos.]]></title><description><![CDATA[<p dir="auto">So i just downloaded Opera GX to try it out. So far I am liking many of the features.<br />
But there is one that i do not only dislike, -I hate it-.<br />
This feature is the white filter that is applied to youtube videos when you hover your mouse over them or when you pause them. Are there any ways to turn it off? Or is it just there?<br />
If there is no way of removing it i might stop using this browser completely.</p>
]]></description><link>https://forums.opera.com/topic/41997/white-filter-on-top-of-youtube-videos</link><generator>RSS for Node</generator><lastBuildDate>Sun, 14 Jun 2026 02:15:18 GMT</lastBuildDate><atom:link href="https://forums.opera.com/topic/41997.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 08 Jul 2020 22:20:53 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to White filter on top of youtube videos. on Sun, 30 Jun 2024 04:38:56 GMT]]></title><description><![CDATA[<p dir="auto">@hagfird Thank you for the assistance.</p>
]]></description><link>https://forums.opera.com/post/354656</link><guid isPermaLink="true">https://forums.opera.com/post/354656</guid><dc:creator><![CDATA[JackTheAnnoyingYouTuber]]></dc:creator><pubDate>Sun, 30 Jun 2024 04:38:56 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Mon, 18 Mar 2024 22:25:27 GMT]]></title><description><![CDATA[<p dir="auto">@hagfird this fixed it for me thanks</p>
]]></description><link>https://forums.opera.com/post/345782</link><guid isPermaLink="true">https://forums.opera.com/post/345782</guid><dc:creator><![CDATA[Swift358]]></dc:creator><pubDate>Mon, 18 Mar 2024 22:25:27 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Sun, 10 Mar 2024 22:49:51 GMT]]></title><description><![CDATA[<p dir="auto">After looking for 5 days I fixed it on my end. I had changed a bunch of stuff trying to get rid of the white glow, but these steps finally fixed it for me.</p>
<p dir="auto">Go to opera://flags/#enable-force-dark and put it on Default. Go to opera settings, at the bottom-ish, there's a setting called Force Dark Pages. Turn that off. Then go to youtube and turn on dark mode on youtube itself. Restart the browser and that fixed it for me</p>
]]></description><link>https://forums.opera.com/post/345040</link><guid isPermaLink="true">https://forums.opera.com/post/345040</guid><dc:creator><![CDATA[AntonaquaOGX]]></dc:creator><pubDate>Sun, 10 Mar 2024 22:49:51 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Mon, 05 Feb 2024 17:59:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/437167">@cafo98</a> Thanks for the link although the "disable" doesn't seem to work the "enable" does.<br />
So i suppose i will conform with having to add sites manually</p>
]]></description><link>https://forums.opera.com/post/341905</link><guid isPermaLink="true">https://forums.opera.com/post/341905</guid><dc:creator><![CDATA[ADSadachbia]]></dc:creator><pubDate>Mon, 05 Feb 2024 17:59:46 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Sun, 12 Nov 2023 02:31:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/598046">@avrratings</a> A bit late so no idea if you still are looking for a fix but I'm gonna reply anyway in case someone in the future is looking for it. Its not working because the scripts is running before those elements have been initialized. An easy fix is not not remove the elements but just add a css style to make the white glow not be displayed. This should work :</p>
<p dir="auto">// ==UserScript==<br />
// @name         Remove white hue from dark mode player<br />
// @namespace    <a href="http://tampermonkey.net/" target="_blank" rel="noopener noreferrer nofollow ugc">http://tampermonkey.net/</a><br />
// @version      0.1<br />
// @description  try to take over the world!<br />
// @author       You<br />
// @match        <a href="https://www.youtube.com/*" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.youtube.com/*</a><br />
// @icon         <a href="https://www.google.com/s2/favicons?sz=64&amp;domain=youtube.com" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.google.com/s2/favicons?sz=64&amp;domain=youtube.com</a><br />
// @grant        none<br />
// <a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/577177">@require</a> <a href="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js" target="_blank" rel="noopener noreferrer nofollow ugc">https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js</a><br />
// ==/UserScript==</p>
<p dir="auto">(function () {<br />
'use strict';<br />
var sheet = document.createElement('style');<br />
var sheet2 = document.createElement('style');</p>
<pre><code>sheet.innerHTML = ".ytp-gradient-top {display: none !important};";
sheet2.innerHTML = ".ytp-gradient-bottom {display: none !important};";

document.body.appendChild(sheet);
document.body.appendChild(sheet2);
</code></pre>
<p dir="auto">})();</p>
]]></description><link>https://forums.opera.com/post/333380</link><guid isPermaLink="true">https://forums.opera.com/post/333380</guid><dc:creator><![CDATA[Rabios]]></dc:creator><pubDate>Sun, 12 Nov 2023 02:31:23 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Sun, 10 Sep 2023 17:40:44 GMT]]></title><description><![CDATA[<p dir="auto">Finally found the no.1 issue for me, in opera gx, there is an RGX option, click on it to disable it, and ur done.</p>
]]></description><link>https://forums.opera.com/post/326306</link><guid isPermaLink="true">https://forums.opera.com/post/326306</guid><dc:creator><![CDATA[SolarFlowv]]></dc:creator><pubDate>Sun, 10 Sep 2023 17:40:44 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Sat, 09 Sep 2023 01:35:45 GMT]]></title><description><![CDATA[<p dir="auto">@hagfird tysm man</p>
]]></description><link>https://forums.opera.com/post/326151</link><guid isPermaLink="true">https://forums.opera.com/post/326151</guid><dc:creator><![CDATA[ShashwatK]]></dc:creator><pubDate>Sat, 09 Sep 2023 01:35:45 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Thu, 31 Aug 2023 10:09:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/287502">@cjgray24</a> Hello i'm new at coding and I noticed that there was also a white filter at the top of youtube videos when on fullscreen so why this script isn't working look ?</p>
<pre><code>$('.ytp-gradient-bottom').remove();
$('.ytp-gradient-top').remove();
</code></pre>
<p dir="auto">Excuse my english I am italian</p>
]]></description><link>https://forums.opera.com/post/325008</link><guid isPermaLink="true">https://forums.opera.com/post/325008</guid><dc:creator><![CDATA[avrRATINGs]]></dc:creator><pubDate>Thu, 31 Aug 2023 10:09:10 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Sun, 13 Aug 2023 11:07:23 GMT]]></title><description><![CDATA[<p dir="auto">@tg-kingslay3rx how pls tell</p>
]]></description><link>https://forums.opera.com/post/322661</link><guid isPermaLink="true">https://forums.opera.com/post/322661</guid><dc:creator><![CDATA[uyhuyhguy]]></dc:creator><pubDate>Sun, 13 Aug 2023 11:07:23 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Wed, 24 May 2023 14:37:07 GMT]]></title><description><![CDATA[<p dir="auto">@hagfird that was the issue for me. I just added youtube to the blacklist, that way I can still use force dark pages</p>
]]></description><link>https://forums.opera.com/post/311083</link><guid isPermaLink="true">https://forums.opera.com/post/311083</guid><dc:creator><![CDATA[Gogoseit2020]]></dc:creator><pubDate>Wed, 24 May 2023 14:37:07 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Sun, 16 Apr 2023 22:32:07 GMT]]></title><description><![CDATA[<p dir="auto">@hagfird thank youuu</p>
]]></description><link>https://forums.opera.com/post/306707</link><guid isPermaLink="true">https://forums.opera.com/post/306707</guid><dc:creator><![CDATA[Ella-M]]></dc:creator><pubDate>Sun, 16 Apr 2023 22:32:07 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Wed, 29 Mar 2023 15:58:31 GMT]]></title><description><![CDATA[<p dir="auto">@tetika-0 Please go to opera://settings/content/forceDarkMode (force dark mode settings) and add <a href="http://www.youtube.com" target="_blank" rel="noopener noreferrer nofollow ugc">www.youtube.com</a> to the disable part ... Hope it helps!</p>
]]></description><link>https://forums.opera.com/post/305306</link><guid isPermaLink="true">https://forums.opera.com/post/305306</guid><dc:creator><![CDATA[JackWeasley]]></dc:creator><pubDate>Wed, 29 Mar 2023 15:58:31 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Mon, 06 Mar 2023 15:57:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/489258">@deimosftw</a></p>
<p dir="auto">There are 2 things that cause this:</p>
<ol>
<li>
<p dir="auto">Forcing Opera's dark mode for Youtube. Right-click a Youtube page and choose "Disable force dark page". It it says "Force dark page" instead, then you're not forcing Opera's dark mode on the page and this is not the problem.</p>
</li>
<li>
<p dir="auto">Youtube's Ambient Mode feature. Click the gear on the video toolbar and turn it off.</p>
</li>
</ol>
]]></description><link>https://forums.opera.com/post/302825</link><guid isPermaLink="true">https://forums.opera.com/post/302825</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Mon, 06 Mar 2023 15:57:06 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Sat, 04 Mar 2023 13:05:06 GMT]]></title><description><![CDATA[<p dir="auto">@tg-kingslay3rx how sir please let me know</p>
]]></description><link>https://forums.opera.com/post/302672</link><guid isPermaLink="true">https://forums.opera.com/post/302672</guid><dc:creator><![CDATA[DeimosFTW]]></dc:creator><pubDate>Sat, 04 Mar 2023 13:05:06 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Mon, 19 Dec 2022 19:46:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/398562">@regsto</a> Just go to the top right corner of your screen and select fast configurations then scroll down untill you find force dark pages and turn it off it might still make one site have that config like how it happened to me but just click on configuration right below it and disable the site</p>
]]></description><link>https://forums.opera.com/post/296593</link><guid isPermaLink="true">https://forums.opera.com/post/296593</guid><dc:creator><![CDATA[luna231]]></dc:creator><pubDate>Mon, 19 Dec 2022 19:46:16 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Mon, 19 Dec 2022 18:49:24 GMT]]></title><description><![CDATA[<p dir="auto">@hagfird Thanks bro it resolved this issue for me</p>
]]></description><link>https://forums.opera.com/post/296589</link><guid isPermaLink="true">https://forums.opera.com/post/296589</guid><dc:creator><![CDATA[luna231]]></dc:creator><pubDate>Mon, 19 Dec 2022 18:49:24 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Mon, 29 Aug 2022 08:49:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/421902">@an0nymous</a>  I checked all this page...and the only thing it worked is this link:  <a href="https://www.reddit.com/r/operabrowser/wiki/opera/dark_mode_settings/" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.reddit.com/r/operabrowser/wiki/opera/dark_mode_settings/</a></p>
<p dir="auto">more specific: Opera GX also allows you to force pages into dark mode by applying its own dark theme to pages. To control this, there's a global "Force Dark Pages" option at the URL opera://settings/opera-gx. But, you can also override the global on a per-site basis by right-clicking a page and choosing "Force Dark Page" or "Disable force dark page". And, to get a view of all sites that are overriding the global, you can goto the URL opera://settings/content/forceDarkMode. Note though that forcing a page to be dark when a page is already displaying as dark because of its own theme and or an extension you have installed can cause page colors to look weird. So, if you have problems with colors, always check your dark mode extensions, the page's theme, and Opera's dark mode settings to make sure you're only using one method of darkness.</p>
]]></description><link>https://forums.opera.com/post/288400</link><guid isPermaLink="true">https://forums.opera.com/post/288400</guid><dc:creator><![CDATA[cafo98]]></dc:creator><pubDate>Mon, 29 Aug 2022 08:49:00 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Sat, 25 Jun 2022 21:04:41 GMT]]></title><description><![CDATA[<p dir="auto">@hagfird I had the same problem and disabling force dark fixed it</p>
]]></description><link>https://forums.opera.com/post/284091</link><guid isPermaLink="true">https://forums.opera.com/post/284091</guid><dc:creator><![CDATA[An0nymous]]></dc:creator><pubDate>Sat, 25 Jun 2022 21:04:41 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Tue, 07 Jun 2022 12:39:47 GMT]]></title><description><![CDATA[<p dir="auto">@tetika-0 the problem is using <strong>youtube dark theme in youtube settings</strong> instead of <strong>Opera GX dark theme</strong>, try to turn it off</p>
]]></description><link>https://forums.opera.com/post/282862</link><guid isPermaLink="true">https://forums.opera.com/post/282862</guid><dc:creator><![CDATA[scaredfizz]]></dc:creator><pubDate>Tue, 07 Jun 2022 12:39:47 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Thu, 02 Jun 2022 14:59:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/410291">@casualzade</a> I have force dark pages on and I know where the setting is, but the "configure" option isnt even there for me. I just downloaded opera gx like 40 mins ago so I dont think its any issue with being outdated or something. Anyone have an Idea as to why I cant see it? Heres my view: <img src="/assets/uploads/files/1654181989323-57ed78a3-a749-42c1-afff-27aec85827b8-image.png" alt="57ed78a3-a749-42c1-afff-27aec85827b8-image.png" class=" img-responsive img-markdown" /></p>
]]></description><link>https://forums.opera.com/post/282467</link><guid isPermaLink="true">https://forums.opera.com/post/282467</guid><dc:creator><![CDATA[Zumbo]]></dc:creator><pubDate>Thu, 02 Jun 2022 14:59:56 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Tue, 24 May 2022 14:53:31 GMT]]></title><description><![CDATA[<p dir="auto">@tg-kingslay3rx How im having the problem too</p>
]]></description><link>https://forums.opera.com/post/281771</link><guid isPermaLink="true">https://forums.opera.com/post/281771</guid><dc:creator><![CDATA[znerrr]]></dc:creator><pubDate>Tue, 24 May 2022 14:53:31 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Sun, 01 May 2022 12:25:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/410291">@casualzade</a> thank you so much. Fixed it instantly. For anyone else seeing this typing <a href="http://youtube.com" target="_blank" rel="noopener noreferrer nofollow ugc">youtube.com</a> doesn't work. Need to type "<a href="http://www.youtube.com" target="_blank" rel="noopener noreferrer nofollow ugc">www.youtube.com</a>"</p>
]]></description><link>https://forums.opera.com/post/280175</link><guid isPermaLink="true">https://forums.opera.com/post/280175</guid><dc:creator><![CDATA[DwightShnoot]]></dc:creator><pubDate>Sun, 01 May 2022 12:25:01 GMT</pubDate></item><item><title><![CDATA[Reply to White filter on top of youtube videos. on Sat, 30 Apr 2022 12:15:55 GMT]]></title><description><![CDATA[<p dir="auto">For all the people here using Opera GX, easiest way to get rid of this annoying thing is by disabling force dark pages. Go to the easy setup and look for a "Force dark pages" and press Configure below it. Then you can see the able and disable, put youtube in the disable list and then boom, it's gone. I was also very annoyed by this, but I figured it out by doing this. IF this doesn't work for you, well.. idk but this is the way that I found.</p>
]]></description><link>https://forums.opera.com/post/280083</link><guid isPermaLink="true">https://forums.opera.com/post/280083</guid><dc:creator><![CDATA[CasualZade]]></dc:creator><pubDate>Sat, 30 Apr 2022 12:15:55 GMT</pubDate></item></channel></rss>