• 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
    99850
    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.
    • tetika 0
      tetika 0 last edited by

      So i just downloaded Opera GX to try it out. So far I am liking many of the features.
      But there is one that i do not only dislike, -I hate it-.
      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?
      If there is no way of removing it i might stop using this browser completely.

      Reply Quote 7
        leocg n0id dedmachine scaredfizz JackWeasley 5 Replies Last reply
      • leocg
        leocg Moderator Volunteer @tetika 0 last edited by

        @tetika-0 I don't see it happening here.

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

          Hello. Do you have extensions that turns white pages into black? Have you turned on "Force dark pages"? If the answer is yes; you should try to deactivate it; because that might be the problem.

          Reply Quote 13
            regsto An0nymous timurka225 luna231 Ella-M 9 Replies Last reply
          • n0id
            n0id @tetika 0 last edited by leocg

            @tetika-0
            yeah got annoyed about it too, really dislike it. I haven't figured out how to turn it off automattically yet but inspecting the page element while on youtube when find this style and turning it off in the body works.

            <div class="ytp-gradient-bottom" data-layer="8" style="height: 194px; background-image: url(&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADCCAYAAACIaaiTAAABEklEQVQ4T2XI10cFAACF8dvee++67b33uM17b1MkkSSSSBJJJIkkkkQSSSKJ9EfmOw/npfPw8zmBwL/F8IhYE0eJeJNAiUSTRIlkk0KJVEgz6ZTIMJmUyDLZlMgxuZTIM/mUKDCFlCgyxZQoMaWUKDPllKiASlNFiWpTQ4mgqaVEnamnRINppESTaaZEi2mlRJtpp0SH6aREl+mmRA/0mj5K9JsBSgyaIUoMmxFKjJoxSoybCUqEzCQlpsw0JWbMLCXmIGwilIiaeUosmEVKLJllagVWYQ3WYQM2YQu2YQd2YQ/24QAO4QiO4QRO4QzO4QIu4Qqu4QZu4Q7u4QEe4Qme4QVe4Q3e4QM+4Qu+4Qd+/wCa/ysONxfbvQAAAABJRU5ErkJggg==&quot;);"></div>
            Reply Quote 2
              cjgray24 TG-KingSlay3rX 2 Replies Last reply
            • cjgray24
              cjgray24 @n0id last edited by

              @n0id Thanks for finding the class responsible. I went ahead and made a Tampermonkey script the simply removes this class, code is available to look at on the website (Literally a 1 liner). Requires the Tampermonkey extension.
              https://greasyfork.org/en/scripts/408956-operagx-force-dark-mode-fix-white-overlay-fix

              Reply Quote 13
                Toxxxsk avrRATINGs 2 Replies Last reply
              • cean
                cean last edited by

                I had the same problem and also hated it. I'm using the 'force dark pages' option which causes the white overlay. There are a few ways to fix it: 1. Enable the 'Dark theme' that is native to Youtube or 2. install the 'Enhancer for YouTube' plugin and choose one of it's dark themes. Problem solved! 🙂

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

                  @tetika-0 so I was having this problem too, that's how I found this page. I really like the "Force Dark Pages" option, but it seems to be causing this issue, at least for me it was. So you can click on "configure" for Force Dark Pages and add youtube to the list of disabled pages. It really handy, and works instantly.

                  Reply Quote 2
                    1 Reply Last reply
                  • ragex
                    ragex last edited by

                    The same issue just started to appear with Chrome's dark mode (for some strange reason) and this was the only thread that I could find on the issue. The Tampermonkey script works but its intermittent and sometimes it doesn't remove the white filter.

                    Here's an improved script for Tampermoney:

                    // ==UserScript==
                    // @name        Chrome Force Dark Mode Fix/White Overlay Fix
                    // @namespace   namespace
                    // @include     *://www.youtube*
                    // @description Fixes Chrome Force Dark Mode on YouTube
                    // @grant       GM_addStyle
                    // @require  http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
                    // @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
                    // ==/UserScript==
                    waitForKeyElements (".ytp-gradient-bottom", removeDSclass);
                    
                    function removeDSclass (jNode) {
                        jNode.removeClass ("ytp-gradient-bottom");
                    }
                    
                    Reply Quote 1
                      ragex 1 Reply Last reply
                    • ragex
                      ragex @ragex last edited by ragex

                      Here's the final improved version:

                      // ==UserScript==
                      // @name        Chrome Force Dark Mode Fix/White Overlay Fix
                      // @namespace   namespace
                      // @include     *://www.youtube*
                      // @description Fixes Chrome Force Dark Mode on YouTube
                      // @grant       GM_addStyle
                      // @grant       GM.getValue
                      // @require  http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
                      // @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
                      // ==/UserScript==
                      waitForKeyElements ("div.ytp-gradient-bottom, div.ytp-gradient-top", removeNode);
                      
                      function removeNode (jNode) {
                          jNode.remove ();
                      }
                      Reply Quote 1
                        1 Reply Last reply
                      • koyfontinas
                        koyfontinas last edited by

                        The problem is the force dark , but you can go and remove from settings for the specific page "youtube" and then use youtube page setting so it is still on dark theme . hope it made sense what i told ya (sorry for my poor english). if need more help pm me 🦌

                        Reply Quote 0
                          sodapoppy 1 Reply Last reply
                        • sodapoppy
                          sodapoppy @koyfontinas last edited by

                          @koyfontinas how do you remove it from youtube only? i can't figure out how :'[

                          Reply Quote 1
                            dedmachine 1 Reply Last reply
                          • dedmachine
                            dedmachine @sodapoppy last edited by

                            @sodapoppy First, click on the three lines in the top right of the browser (this is directly under the "X" button to close the window). Then find the option for "Force Dark Pages" and click on "Configuration". Then under the "Disable" section, click on "Add". Then just add www.youtube.com and save and close it.

                            Reply Quote 9
                              sodapoppy 1 Reply Last reply
                            • sodapoppy
                              sodapoppy @dedmachine last edited by

                              @dedmachine force dark mode isnt in the 3 lines, its on the opera://flags page. there's no option for configuring

                              Reply Quote 1
                                dedmachine 1 Reply Last reply
                              • dedmachine
                                dedmachine @sodapoppy last edited by

                                @sodapoppy Click on the "O" in the top left and go to "Update & Recovery" and check for updates. It definitely is an option, but it has a beta label on it. So maybe only recent versions or certain users have access to it.

                                Reply Quote 1
                                  sodapoppy 1 Reply Last reply
                                • sodapoppy
                                  sodapoppy @dedmachine last edited by

                                  @dedmachine are u using a different version of opera? like the beta or developer one?

                                  Reply Quote 0
                                    leocg 1 Reply Last reply
                                  • leocg
                                    leocg Moderator Volunteer @sodapoppy last edited by

                                    @sodapoppy Probably using Opera GX, since this area is about Opera GX.

                                    Reply Quote 0
                                      sodapoppy 1 Reply Last reply
                                    • sodapoppy
                                      sodapoppy @leocg last edited by

                                      @leocg i,, feel very stupid. thanks so much!!

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

                                        @n0id if you ever get back to reading this, i found the way to disable it

                                        Reply Quote 0
                                          xxxvt znerrr DeimosFTW uyhuyhguy 4 Replies Last reply
                                        • xxxvt
                                          xxxvt @TG-KingSlay3rX last edited by

                                          @tg-kingslay3rx I also have the problem, can you explain pls?

                                          Reply Quote 0
                                            1 Reply Last reply
                                          • Toxxxsk
                                            Toxxxsk @cjgray24 last edited by This post is deleted!
                                            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-