• 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

    Version shown in pages

    Opera for Windows
    20
    34
    15695
    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.
    • nkrishnaswami
      nkrishnaswami @acerswap last edited by

      @acerswap Looks like it's from

      • DNA-99524 Update method for displaying version of active browserjs
        The corresponding browser.js change looks like
                  'DNA-99524': {
                      description: 'Browser.js version reported on FAQ page',
                      isMatching: () => browserjsUrl,
                      applyOnDOMReady: true,
                      apply: () => {
                          const browserjs_info = version();
                          const addVersion =
                            createTextNode(`Today ${browserjs_info}`);
                          document.body.appendChild(addVersion);
                      },
                  },
      

      and it looks like the isMatching is always truthy, so should maybe need to be something like

                      isMatching: () => href === browserjsUrl.href,
      

      instead.

      Reply Quote 3
        yogrark 1 Reply Last reply
      • yogrark
        yogrark @acerswap last edited by

        @acerswap said in Version shown in pages:

        Today, in all the pages I open there's a "Today Opera OPRDesktop 28.0 core 1750.0, May 25, 2022. Active patches: 21" printed somewhere. I've disabled all extensions and tried in a private window and it's the same.

        Can I do something to avoid it to appear?

        Same is happening here!

        Reply Quote 1
          1 Reply Last reply
        • taschgroup
          taschgroup @acerswap last edited by taschgroup

          I encounter the same problem, after Opera performed an update today. In addition, it takes forever to load the pages.

          Reply Quote 3
            1 Reply Last reply
          • MarzEz
            MarzEz last edited by

            I have the same issue. This tends to appear at the bottom of the page, but is visible as soon as a page begins to load.
            It even appears at the bottom of this forum page, below the footer.
            e26f4070-a63a-41e9-b884-798672ca43e0-image.png

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

              Same here. Did either of you do a bug report?

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

                I've also had the exact same problem

                Reply Quote 0
                  1 Reply Last reply
                • A Former User
                  A Former User last edited by

                  Thanks for the explanation, worked like a charm! Thanks a lot!

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

                    Same problem here
                    73ca883a-a6fc-42d2-a195-d8c23e422b3a-image.png

                    Reply Quote 0
                      1 Reply Last reply
                    • yogrark
                      yogrark @nkrishnaswami last edited by

                      @nkrishnaswami Maybe I'm missing something, but I couldn't find that code in the browser.js file.

                      -Yo Grark

                      Reply Quote 0
                        samj 1 Reply Last reply
                      • samj
                        samj @yogrark last edited by

                        @yogrark I can only see it in the in-memory/live version and not the one in my program files install directory. The latest version is cached at %appdata%\Opera Software\Opera Stable\browser.js in some encoded format.

                        To view it in plain text, you need to visit a page where it activates (such as Gmail), open your browser console, then look for a Opera has modified script or content... log message and click the browser.js link on the right hand side of the console window.

                        Reply Quote 1
                          1 Reply Last reply
                        • Referenced by  samj samj 
                        • bmpte
                          bmpte @acerswap last edited by

                          @acerswap confirmed, very annoying ;/

                          Reply Quote 0
                            1 Reply Last reply
                          • gmiazga
                            gmiazga Opera last edited by

                            We have reverted to previous version of browser.js so problem should be gone soon for all users. Usually can take up to a few hours depending when was last update fetched.

                            Reply Quote 6
                              acerswap rufinoman1 pflegende 3 Replies Last reply
                            • acerswap
                              acerswap @gmiazga last edited by

                              @gmiazga

                              After forcing the update, the problem is solved. Thank you.

                              Reply Quote 0
                                yogrark pflegende 2 Replies Last reply
                              • yogrark
                                yogrark @acerswap last edited by

                                I have never felt so loved and heard by a software company!

                                Thanks Dev's!

                                Reply Quote 1
                                  1 Reply Last reply
                                • Referenced by  lavanyadeepak 0 lavanyadeepak 0 
                                • wishme262
                                  wishme262 last edited by

                                  hope it will be fix soon by new update , thank you Opera

                                  Reply Quote 0
                                    1 Reply Last reply
                                  • Referenced by  loqq loqq 
                                  • rufinoman1
                                    rufinoman1 @gmiazga last edited by

                                    @gmiazga
                                    It's back again:
                                    "Today Opera OPRDesktop 28.0 core 1750.0, May 25, 2022. Active patches: 21"

                                    Reply Quote 7
                                      1 Reply Last reply
                                    • Blackmoonrose13
                                      Blackmoonrose13 last edited by

                                      64db924c-8792-48ee-8179-0563fc4243f4-image.png

                                      Yea same thing is happening when I am watching twitch its getting kind of annoying now.

                                      I dont want to have to disable the thing every time I open up my browser and I really don't feel like doing uninstall reinstall because it seems it doesnt work either.

                                      Reply Quote 1
                                        1 Reply Last reply
                                      • josebastian
                                        josebastian last edited by

                                        The issue is in the browser.js,
                                        It has this wrong code:

                                        isMatching: () => browserjsUrl.href,
                                        

                                        Where it should be:

                                                    isMatching: () => href === browserjsUrl.href,
                                        

                                        You just have to edit the browser.js script to have it like this:

                                                'DNA-99524': {
                                                    description: 'Browser.js version reported on FAQ page',
                                                    isMatching: () => href === browserjsUrl.href,
                                                    applyOnDOMReady: true,
                                                    apply: () => {
                                                        const browserjs_info = version();
                                                        const addVersion =
                                                          createTextNode(`Today ${browserjs_info}`);
                                                        document.body.appendChild(addVersion);
                                                    },
                                                },
                                        
                                        Reply Quote 1
                                          rufinoman1 1 Reply Last reply
                                        • A Former User
                                          A Former User last edited by

                                          i have this problem.

                                          Reply Quote 1
                                            1 Reply Last reply
                                          • rufinoman1
                                            rufinoman1 @josebastian last edited by

                                            @josebastian
                                            Thanks! It's now gone away all by itself ot perhaps an update.

                                            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-