• Browser
  • Mail
  • News
  • Community
  • About
Register Login
HomeBlogsForumThemesContributeSocial

Vivaldi

  • Browser
  • Mail
  • News
  • Community
  • About

Navigation

    • Home
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Desktop
    3. Desktop Feature Requests
    4. Configurable Middle-click (e.g. open Tabs in Foreground)

    Configurable Middle-click (e.g. open Tabs in Foreground)

    Desktop Feature Requests
    tabs
    35
    97
    17.3k
    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.
    • B
      Barruel
      last edited by

      I upvoted this.

      As a former Opera user, I am used to middle-click over a link to open it in a background tab. I don't know where I got the habit, but I am also used to middle-click in the tab itself to duplicate it in a background tab, and I keep closing them every time I do it, which is quite often. Mildly infuriating.

      1 Reply Last reply Reply Quote 0
      • J
        janiporo
        last edited by

        I have been wanting this option since Opera-days. How do I vote on this?

        mib2berlin
        M
        1 Reply Last reply
        Reply Quote 0
        • mib2berlin
          M
          mib2berlin Soprano @janiporo
          last edited by

          @janiporo
          Hi, vote in the first post:

          upvote.png

          Cheers, mib

          Opensuse Tumbleweed x86_64 KDE 6.2 X11, Windows 11 Pro, Vivaldi latest
          HP Probook Intel(R) i5-8350U 16 GB, GPU UHD 620, SSD 256 GB
          Miniforum-B550 AMD Ryzen 7 4700G 16 GB, Radeon Graphics
          Redmi Note 14, HyperOS Android 14

          1 Reply Last reply Reply Quote 2
          • J
            janiporo
            last edited by

            Thanks ^~^

            1 Reply Last reply Reply Quote 1
            • belenus
              B
              belenus
              last edited by belenus

              Hello,

              is it possible to configure Vivaldi in order to middle click the new tab button (+) to have private window opened? I see that the shortcut to open private window is configurable, but it doesn't accept mouse inputs.

              Linux/Android/Vivaldi - always the latest, always updated.
              Pixel 6 Pro/Intel PC.

              Pesala
              P
              1 Reply Last reply
              Reply Quote 0
              • Pesala
                P
                Pesala Ambassador @belenus
                last edited by

                @belenus Much better is to assign a mouse gesture to open a new private window, then you can open it wherever the mouse cursor is on the page, there is no need to hit the new tab button, which may be far away, and is not always in the same position.

                New Private Window.png

                Blog • Vivaldi Review • Server Status
                Win 10 64-bit build 19045.2486 • Snapshot 7.4.3683.4 (64-bit)

                1 Reply Last reply Reply Quote 3
                • Mrwhite987
                  M
                  Mrwhite987 @schreck
                  last edited by

                  This post is deleted!
                  1 Reply Last reply Reply Quote 0
                  • Mrwhite987
                    M
                    Mrwhite987
                    last edited by

                    @schreck Same problem here when transform from chrome to vivaldi.
                    I try to use chatgpt to create a extension to solve this issue and it worked.
                    You can get access to the extension at following url and load it into vivaldi if you want.
                    https://drive.google.com/file/d/1MK0m3CCsoiRH-4PLY6uLArgghgM_pTuO/view?usp=drive_link

                    CasketPizza
                    C
                    1 Reply Last reply
                    Reply Quote 2
                    • S
                      stachenov
                      last edited by

                      I wonder why it hasn't been implemented yet. Vivaldi poses itself as highly customizable, but this one thing is one of the first that come to mind when speaking about customization. Even Firefox has it. Is it somehow made hard to implement by the Chromium part? Because otherwise it sounds like something ridiculously easy and yet extremely useful. I can do without it, of course, I got used to this stupid way of opening tabs in Chrome, but at the same time it feels like using Chrome, that is, something uncomfortable and not customizable at all.

                      A
                      1 Reply Last reply
                      Reply Quote 1
                      • CasketPizza
                        C
                        CasketPizza @Mrwhite987
                        last edited by CasketPizza

                        @Mrwhite987 this works great, but the new tab doesn't open in the current tab group now 😟, still, thanks for trying.

                        edit: i ran your extension through chatgpt and it fixed it 😊. It changed background.js to this:

                        chrome.runtime.onInstalled.addListener(() => {
                            chrome.contextMenus.create({
                                id: "openInForegroundTab",
                                title: "Open in Foreground Tab",
                                contexts: ["link"]
                            });
                        });
                        
                        chrome.contextMenus.onClicked.addListener((info, tab) => {
                            if (info.menuItemId === "openInForegroundTab") {
                                chrome.tabs.create({
                                    url: info.linkUrl,
                                    active: true,
                                    index: tab.index + 1,
                                    openerTabId: tab.id
                                }, (newTab) => {
                                    if (tab.groupId !== chrome.tabGroups.TAB_GROUP_ID_NONE) {
                                        chrome.tabs.group({ groupId: tab.groupId, tabIds: newTab.id });
                                    }
                                });
                            }
                        });
                        
                        chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
                            if (message.action === 'openInForeground') {
                                chrome.tabs.create({
                                    url: message.url,
                                    active: true,
                                    index: sender.tab.index + 1,
                                    openerTabId: sender.tab.id
                                }, (newTab) => {
                                    if (sender.tab.groupId !== chrome.tabGroups.TAB_GROUP_ID_NONE) {
                                        chrome.tabs.group({ groupId: sender.tab.groupId, tabIds: newTab.id });
                                    }
                                });
                            }
                        });
                        
                        chrome.tabs.onCreated.addListener((tab) => {
                            if (!tab.active) {
                                chrome.tabs.update(tab.id, { active: true });
                            }
                        });
                        
                        1 Reply Last reply Reply Quote 0
                        • A
                          astero @stachenov
                          last edited by

                          @stachenov said in Configurable Middle-click (e.g. open Tabs in Foreground):

                          I wonder why it hasn't been implemented yet. Vivaldi poses itself as highly customizable, but this one thing is one of the first that come to mind when speaking about customization. Even Firefox has it. Is it somehow made hard to implement by the Chromium part? Because otherwise it sounds like something ridiculously easy and yet extremely useful. I can do without it, of course, I got used to this stupid way of opening tabs in Chrome, but at the same time it feels like using Chrome, that is, something uncomfortable and not customizable at all.

                          agree. It is weird that middle-click is not customizable in Vivaldi, yet very simple to implement.

                          S
                          1 Reply Last reply
                          Reply Quote 0
                          • S
                            stachenov @astero
                            last edited by

                            @astero To be honest, I barely need this anymore since I revived my old Opera instincts and started using mouse gestures. I open links in the foreground by dragging down now and open in the background by middle-clicking.

                            Still, more freedom to customize mouse buttons would be nice.

                            1 Reply Last reply Reply Quote 1
                            • michalholas
                              M
                              michalholas
                              last edited by

                              This post is deleted!
                              1 Reply Last reply Reply Quote 0
                              • VoodooPriest
                                V
                                VoodooPriest
                                last edited by

                                With the proliferation of the number of "partners" in cookie notice windows and the ludicrous difficulty that it sometimes is to deny all cookies, I now open links in a private window more often than not.

                                I would welcome the possibility to configure either the middle mouse button or a gesture to open links in private window.

                                1 Reply Last reply Reply Quote 1
                                • ra-mon
                                  R
                                  ra-mon Soprano Moderator Translator Patron
                                  last edited by

                                  There is already an option called "new tab from link opens in background" in Setting > Tabs > Tabs. It's designed for link contextual menu behavior.

                                  Perhaps it's possible to mutualize this existing option with the middle-click behavior ?

                                  Soprano (testeur sous Linux Mint, Linux Manjaro Cinnamon et épisodiquement sous Win10) - Modérateur - Traducteur FR - https://twitter.com/vivaldi_fr - https://fr.vivaldi.net - https://social.vivaldi.net/@ramon

                                  1 Reply Last reply Reply Quote 0
                                  Loading More Posts
                                  • Oldest to Newest
                                  • Newest to Oldest
                                  • Most Votes
                                  Reply
                                  • Reply as topic
                                  Log in to reply
                                  • 1
                                  • 2
                                  • 3
                                  • 4
                                  • 5
                                  • 5 / 5
                                  • First post
                                    Last post

                                  Looks like your connection to Vivaldi Forum was lost, please wait while we try to reconnect.

                                  Copyright © Vivaldi Technologies™ — All rights reserved. Privacy Policy | Code of conduct | Terms of use | Vivaldi Status