• Community
    • Community
    • Vivaldi Social
    • Blogs
  • Forum
    • Vivaldi Forum
    • Categories
    • Recent
    • Popular
  • Themes
    • Vivaldi Themes
    • My Themes
    • FAQ
  • Contribute
    • Contribute
    • Volunteer
    • Donate
  • Browser
    • Vivaldi Browser
    • Latest News
    • Snapshots
    • Help
Register Login

Vivaldi

  • Community
  • Themes
  • Contribute
  • Browser

Navigation

    • Home
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Desktop
    3. Customizations & Extensions
    4. Extensions
    5. Tree Tabs

    Tree Tabs

    Scheduled Pinned Locked Moved Extensions
    334 Posts 57 Posters 222.8k Views 53 Watching
    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.
    • H
      hien4990 @ThomasMcA
      last edited by

      @ThomasMcA can you add support for linkclump, i want to open links with linkclump act as the children tabs of current tab.

      1 Reply Last reply Reply Quote 0
    • M
      morcibacsi
      last edited by

      Is it possible to add support to enlarge the font size of the groups from themes? It seems to me that it is fixed to 11px.

      1 Reply Last reply Reply Quote 0
    • H
      hien4990
      last edited by

      can someone reupload the extension, the author has removed it.

      K
      1 Reply Last reply
      Reply Quote 0
    • K
      Klopenshtok @hien4990
      last edited by

      @hien4990
      treetabs2-vivaldi-2.0.9.zip
      https://yadi.sk/d/hoJ3b6o3ZQfSUQ

      1 Reply Last reply Reply Quote 1
    • H
      hien4990
      last edited by

      anyone have error that cannot change color of this extension?

      1 Reply Last reply Reply Quote 0
    • H
      Hellaren
      last edited by

      After updating to the latest version of V (3.3.2022.45) the extension fails to run.

      988257a5-d5a5-44fc-8015-4d6b950eccaf-image.png

      Any ideas on how it could be fixed?
      BTW, it's quite sad that V team breaks this plugin almost every release.

      K
      inanis
      I
      2 Replies Last reply
      Reply Quote 0
    • K
      Klopenshtok @Hellaren
      last edited by

      @Hellaren
      Just rollback to the previous version of Vivaldi.

      1 Reply Last reply Reply Quote 0
    • inanis
      I
      inanis @Hellaren
      last edited by inanis

      @Hellaren The answer to this is pretty simple...

      #1
      In the plugin folder, find

      global.js

      #2
      change line 4

      let browserId = navigator.userAgent.match('Opera|OPR') !== null ? 'O' : (navigator.userAgent.match('Firefox') !== null ? 'F' : 'V');
      

      to this:

      let browserId = "V";
      

      #3
      Reload Extension. Either restart browser, or remove web panel and add again, or in the extensions page click the reload icon. One or all of those should do the trick

      Explanation:

      Something changed a few versions back about this function navigator.userAgent.match that is causing the error. If you force the extension to only work for Vivaldi it fixes the issue.

      I do not understand why this happens since if I ask the browser the same question in the console I get the correct outcome. It may have something to do with timing, and that when this variable is created the function is unavailable. But unclear.

      All I know is this.

      I had this issue months ago with TreeTabs, and I just had this issue with TreeTabs2 from the link above and I fixed it the same way.

      H
      1 Reply Last reply
      Reply Quote 3
    • H
      Hellaren @inanis
      last edited by

      @inanis, it did the trick!
      I was even thinking about moving to Firefox (where treetab is supported) since it's pretty hard for me to work with a flat tab structure, but you saved me from it 🙂

      Thanks a lot for your help!

      1 Reply Last reply Reply Quote 0
    • V
      Vistaus
      last edited by

      I still hope for a native TST solution as well, but a while ago somewhere on the front page I was told by a few VV insiders that it was not going to happen because not enough people want it. So I guess we'll have to wait for another solution like this one...

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

      @Vistaus said in Tree Tabs:

      I was told by a few VV insiders that it was not going to happen because not enough people want it.

      Someone is trying to pull the wool over your eyes. Currently, 83 user have upvoted to Implement Tree Style Tabs, making it one of the most popular feature requests — not quite in the top twenty by votes.

      However, two level tab stacking may satisfy many users who wanted tree style tabs.

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

      emvaized
      E
      1 Reply Last reply
      Reply Quote 0
    • emvaized
      E
      emvaized @Pesala
      last edited by emvaized

      @Pesala It's definetely nice to see that developers finaly made some shifts in this direction. However, the provided solution is far from close to tree-style-tabs in terms of usability.

      1. Second panel takes up a lot of screen space
      2. Navigating with a lot of trees becomes really frustrating, as there's no visual connection between stack tabs and it's parent in the main tree - stack tabs always appear on top of second panel
      3. 'Virtual tree' created by second panel is actually limited by only one child node, which is not near as close to tab nesting possibilities of tree-style-tabs

      My question is - why not just to take the already-built tree-style-extension, fix it's bugs and include it in the Vivaldi as an additional sidebar panel? What are the reasons preventing from this?

      1 Reply Last reply Reply Quote 1
    • E
      encounter
      last edited by

      @guigirl

      klopenshtok said in Tree Tabs:

      @hien4990
      treetabs2-vivaldi-2.0.9.zip
      https://yadi.sk/d/hoJ3b6o3ZQfSUQ

      use this or the og treetab by

      inanis said in Tree Tabs:

      Hellaren The answer to this is pretty simple...

      #1
      In the plugin folder, find

      global.js

      #2
      change line 4

      let browserId = navigator.userAgent.match('Opera|OPR') !== null ? 'O' : (navigator.userAgent.match('Firefox') !== null ? 'F' : 'V');
      

      to this:

      let browserId = "V";
      

      #3
      Reload Extension. Either restart browser, or remove web panel and add again, or in the extensions page click the reload icon. One or all of those should do the trick

      Explanation:

      Something changed a few versions back about this function navigator.userAgent.match that is causing the error. If you force the extension to only work for Vivaldi it fixes the issue.

      I do not understand why this happens since if I ask the browser the same question in the console I get the correct outcome. It may have something to do with timing, and that when this variable is created the function is unavailable. But unclear.

      All I know is this.

      I had this issue months ago with TreeTabs, and I just had this issue with TreeTabs2 from the link above and I fixed it the same way.

      1 Reply Last reply Reply Quote 1
    • K
      kelendral
      last edited by kelendral

      I downloaded v1.9.2 from the Stable release linked on the first post.

      I applied the fix to the plugins\global.js as described by inanis in this post.

      This got things installed and working.
      However I had a problem when it came to adjusting the themes. The color picker would never show up.

      So here is a change I made that is working for me in case anyone needs it.

      In the 'options' folder you will need to edit 'options.html'
      Change line 880 FROM:

      <input type="color" id="color_picker" style="position:absolute; top:-1000px; width:1px; height:1px; overflow:hidden;">
      

      Change line 880 TO:

      <input type="color" id="color_picker" style="position: absolute; left:349px; top:2948px; width:1px; height:1px; ">
      

      After the above options\options.html changes for me that put the color picker below the theme area.
      Then I could modify the Dark Fox theme as shown in this screenshot with Manager Window open set to Saved Sessions, the right-click menu displayed and hovered, an example set of tabs pushed out to 15 child tabs deep, and the color picker:TreeTabs.jpg

      Keen observers might note the panel has a title which was added in sidebar.html.

      To get a named session as show:

      1. Save Session
      2. Select Save To Disk for that Saved Session
      3. Name file how you want session to appear.
      4. Import Session and it will have named you gave Save file.
      1 Reply Last reply Reply Quote 1
    • ATag5146
      A
      ATag5146
      last edited by

      You might edit your post with images of the extension working.

      1 Reply Last reply Reply Quote 0
    • A
      aboppy
      last edited by

      I know this is the vivaldi forum, but I am having an issue on Firefox where the tree tabs sidebar will flash white every second or so. Have any of you run into that problem? Updating to the latest Firefox doesn't help (unsurprisingly, as it's probably something that changed in firefox's code) I haven't tried reverting to previous versions, but I would rather just edit the source code of the plugin if I knew where this issue is.

      guigirl
      G
      1 Reply Last reply
      Reply Quote 0
    • guigirl
      G
      guigirl @aboppy
      last edited by

      @aboppy Or, at the very least, use our https://forum.vivaldi.net/topic/59536/i-cheat-on-vivaldi-with-firefox/369

      1 Reply Last reply Reply Quote 0
    • G
      greywolfnz
      last edited by

      I don't know if anyone is still reading this forum, but if so, it appears that Vivaldi version 5.3.2679.36 has broken this extension. If anyone knows how it could be fixed, I, for one, would really appreciate it.

      guigirl
      G
      H
      S
      3 Replies Last reply
      Reply Quote 0
    • guigirl
      G
      guigirl @greywolfnz
      last edited by

      @greywolfnz said in Tree Tabs:

      if anyone is still reading this forum

      Yeah, prolly.

      G
      1 Reply Last reply
      Reply Quote 1
    • G
      greywolfnz @guigirl
      last edited by

      @guigirl said in Tree Tabs:

      @greywolfnz said in Tree Tabs:

      if anyone is still reading this forum

      Yeah, prolly.

      🙂

      Heh. Fair cop, there. Thread - better.

      Good alternatives welcome, too.

      guigirl
      G
      1 Reply Last reply
      Reply Quote 1
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    • 1
    • 2
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 14 / 17
    • First post
      Last post

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