• Login
    • Search
    • Categories
    • Recent
    • Tags
    • Users
    • Groups
    • Rules
    • Help

    Do more on the web, with a fast and secure browser!

    Download Opera browser with:

    • built-in ad blocker
    • battery saver
    • free VPN
    Download Opera

    White filter on top of youtube videos.

    Opera GX
    43
    61
    101232
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Zumbo
      Zumbo @CasualZade last edited by

      @casualzade 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: 57ed78a3-a749-42c1-afff-27aec85827b8-image.png

      Reply Quote 0
        1 Reply Last reply
      • scaredfizz
        scaredfizz @tetika 0 last edited by

        @tetika-0 the problem is using youtube dark theme in youtube settings instead of Opera GX dark theme, try to turn it off

        Reply Quote 0
          1 Reply Last reply
        • An0nymous
          An0nymous @hagfird last edited by

          @hagfird I had the same problem and disabling force dark fixed it

          Reply Quote 1
            cafo98 1 Reply Last reply
          • cafo98
            cafo98 @An0nymous last edited by

            @an0nymous I checked all this page...and the only thing it worked is this link: https://www.reddit.com/r/operabrowser/wiki/opera/dark_mode_settings/

            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.

            Reply Quote 0
              ADSadachbia 1 Reply Last reply
            • timurka225
              timurka225 @hagfird last edited by This post is deleted!
              Reply Quote 0
                1 Reply Last reply
              • luna231
                luna231 @hagfird last edited by

                @hagfird Thanks bro it resolved this issue for me

                Reply Quote 0
                  1 Reply Last reply
                • luna231
                  luna231 @regsto last edited by

                  @regsto 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

                  Reply Quote 0
                    1 Reply Last reply
                  • DeimosFTW
                    DeimosFTW @TG-KingSlay3rX last edited by

                    @tg-kingslay3rx how sir please let me know

                    Reply Quote 0
                      burnout426 1 Reply Last reply
                    • burnout426
                      burnout426 Volunteer @DeimosFTW last edited by

                      @deimosftw

                      There are 2 things that cause this:

                      1. 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.

                      2. Youtube's Ambient Mode feature. Click the gear on the video toolbar and turn it off.

                      Reply Quote 0
                        1 Reply Last reply
                      • JackWeasley
                        JackWeasley @tetika 0 last edited by

                        @tetika-0 Please go to opera://settings/content/forceDarkMode (force dark mode settings) and add www.youtube.com to the disable part ... Hope it helps!

                        Reply Quote 4
                          1 Reply Last reply
                        • Ella-M
                          Ella-M @hagfird last edited by

                          @hagfird thank youuu

                          Reply Quote 0
                            1 Reply Last reply
                          • Gogoseit2020
                            Gogoseit2020 @hagfird last edited by

                            @hagfird that was the issue for me. I just added youtube to the blacklist, that way I can still use force dark pages

                            Reply Quote 0
                              1 Reply Last reply
                            • uyhuyhguy
                              uyhuyhguy @TG-KingSlay3rX last edited by

                              @tg-kingslay3rx how pls tell

                              Reply Quote 0
                                1 Reply Last reply
                              • avrRATINGs
                                avrRATINGs @cjgray24 last edited by

                                @cjgray24 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 ?

                                $('.ytp-gradient-bottom').remove();
                                $('.ytp-gradient-top').remove();
                                

                                Excuse my english I am italian

                                Reply Quote 0
                                  Rabios 1 Reply Last reply
                                • ShashwatK
                                  ShashwatK @hagfird last edited by

                                  @hagfird tysm man

                                  Reply Quote 0
                                    1 Reply Last reply
                                  • SolarFlowv
                                    SolarFlowv last edited by

                                    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.

                                    Reply Quote 0
                                      1 Reply Last reply
                                    • Rabios
                                      Rabios @avrRATINGs last edited by

                                      @avrratings 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 :

                                      // ==UserScript==
                                      // @name Remove white hue from dark mode player
                                      // @namespace http://tampermonkey.net/
                                      // @version 0.1
                                      // @description try to take over the world!
                                      // @author You
                                      // @match https://www.youtube.com/*
                                      // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
                                      // @grant none
                                      // @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js
                                      // ==/UserScript==

                                      (function () {
                                      'use strict';
                                      var sheet = document.createElement('style');
                                      var sheet2 = document.createElement('style');

                                      sheet.innerHTML = ".ytp-gradient-top {display: none !important};";
                                      sheet2.innerHTML = ".ytp-gradient-bottom {display: none !important};";
                                      
                                      document.body.appendChild(sheet);
                                      document.body.appendChild(sheet2);
                                      

                                      })();

                                      Reply Quote 1
                                        1 Reply Last reply
                                      • ADSadachbia
                                        ADSadachbia @cafo98 last edited by

                                        @cafo98 Thanks for the link although the "disable" doesn't seem to work the "enable" does.
                                        So i suppose i will conform with having to add sites manually

                                        Reply Quote 0
                                          1 Reply Last reply
                                        • AntonaquaOGX
                                          AntonaquaOGX last edited by

                                          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.

                                          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

                                          Reply Quote 0
                                            1 Reply Last reply
                                          • Swift358
                                            Swift358 @hagfird last edited by

                                            @hagfird this fixed it for me thanks

                                            Reply Quote 0
                                              1 Reply Last reply
                                            • First post
                                              Last post

                                            Computer browsers

                                            • Opera for Windows
                                            • Opera for Mac
                                            • Opera for Linux
                                            • Opera beta version
                                            • Opera USB

                                            Mobile browsers

                                            • Opera for Android
                                            • Opera Mini
                                            • Opera Touch
                                            • Opera for basic phones

                                            • Add-ons
                                            • Opera account
                                            • Wallpapers
                                            • Opera Ads

                                            • Help & support
                                            • Opera blogs
                                            • Opera forums
                                            • Dev.Opera

                                            • Security
                                            • Privacy
                                            • Cookies Policy
                                            • EULA
                                            • Terms of Service

                                            • About Opera
                                            • Press info
                                            • Jobs
                                            • Investors
                                            • Become a partner
                                            • Contact us

                                            Follow Opera

                                            • Opera - Facebook
                                            • Opera - Twitter
                                            • Opera - YouTube
                                            • Opera - LinkedIn
                                            • Opera - Instagram

                                            © Opera Software 1995-