• Bookmarks import tool

    Vivaldi for Android
    1
    · corxi
    0 Votes
    1 Posts
    18 Views
    No one has replied
  • 3 Votes
    13 Posts
    759 Views
    B
    @barbudo2005 thanks for help
  • Vertical Extensions Drop-Down Menu

    Modifications
    12
    · quodroc
    11 Votes
    12 Posts
    1k Views
    B
    @quodroc somebody helped how can i use this but is there any way to sort in alphabetical order?
  • 0 Votes
    2 Posts
    31 Views
    coleslaw
    C
    /* Создание Вкладки - кликом СКМ по панели вкладок */ #tabs-container>.resize {-webkit-app-region: no-drag;} https://forum.vivaldi.net/topic/58606
  • что это

    Общий форум
    4
    · vintranokto
    0 Votes
    4 Posts
    42 Views
    vintranokto
    V
    @far4 Я хотел челу ответить который на мой пост сообщение написал, но мне выдает вот это. Я перешёл по ссылке, это типичный сайт бездарей которые ничего не умеют, а-ля Lingvanex или Recaptha - то есть некуда обратиться по поводу вот таких вот замечательных срабатываний. На сайте буквально написано 99,9 % срабатываний на спам:)))))))) Вот бывает да какая то поддержка есть и если какая то проблема всегда можно решить, но когда никакой связи нету то это действительно ужасно, помню как я на какой то сайт не мог зайти сутки потому что капча не решалась.
  • 1 Votes
    10 Posts
    91 Views
    vintranokto
    V
    @Shpankov [image: 1752967838108-c6ebc8f4-64e6-4e78-b6b7-4b97f05a0459-image.png] неудивительно, это буквально ХУДШИЙ ПЕРЕВОДЧИК что я встречал, он работает отвратительно на всех устройствах. Ну, то есть работал, теперь он вообще не работает.
  • 0 Votes
    10 Posts
    64 Views
    vintranokto
    V
    @far4 скорей бы регистрация была по паспорту и номеру телефона, чтобы было действительно безопасно
  • Guide | Vivaldi on 🐌 Old / Low End Computers

    Pinned Tips & Tricks
    69
    · Zalex108
    7 Votes
    69 Posts
    12k Views
    edwardp
    E
    @Zalex108 It looks like it is the drivers. Using X11's built-in modesetting driver, the display resolution does not change from 1920x1080. After switching it to the Radeon driver in X11, I am able to change it.
  • 0 Votes
    1 Posts
    23 Views
    No one has replied
  • 15 Votes
    67 Posts
    7k Views
    KaKi87
    K
    I hotfixed it, although I have yet to find the true root cause and apply a clean fix. That should make no visual difference though.
  • 0 Votes
    3 Posts
    32 Views
    laingman
    L
    @Pesala said in Messaging apps such as what's app and telegram too big in panel: @laingman Right-click on the Web Panel icon, and check that you’re using the Mobile version of the website. [image: 1752965346536-show-mobile-version.png] Thank for reply. Still unusable, way different than how it used to be. I now just have to use the main website display.
  • 0 Votes
    51 Posts
    656 Views
    W
    На удивление избавился от этой ненужной фичи нажатием на пиктограмму с замком под кнопкой закрытия окна. Всплывающая подсказка была что-то типа "заблокировать второй ряд вкладок" или как-то так. То есть, вроде как надо было нажать один раз или пару раз - в общем, попробуйте в эту кнопку потыкать, возможно стоит перезагрузить браузер. [image: 1752957247091-2025-07-18_23h07_37.png]
  • 0 Votes
    28 Posts
    2k Views
    iGerman
    I
    Script to patch Vivaldi to have 2.2 gamma exponent, for testing. Doesn't quite work for contrast for me, I couldn't find an easy to patch offset, but the first exponent offset that occurs in the file with the value 1.2 is the skia one that needs to be patched. This might work for other chromium browsers and apps too: Needs python3, xxd, dd, awk and bgrep #!/bin/bash float_to_hex() { local float_val="$1" python3 -c "import struct; print(' '.join(f'{b:02x}' for b in struct.pack('<f', $float_val)))" } detect_browsers() { local browsers=() [ -f "/opt/vivaldi/vivaldi-bin" ] && browsers+=("/opt/vivaldi/vivaldi-bin") [ -f "/opt/google/chrome/chrome" ] && browsers+=("/opt/google/chrome/chrome") [ -f "/usr/bin/chromium" ] && browsers+=("/usr/bin/chromium") echo "${browsers[@]}" } # request sudo if [ "$(id -u)" -ne 0 ]; then echo "This script requires root privileges. Please run with sudo." exit 1 fi BROWSERS=($(detect_browsers)) if [ ${#BROWSERS[@]} -eq 0 ]; then echo "No supported browsers detected. Please specify browser path manually." read -p "Enter browser binary path: " BROWSER if [ ! -f "$BROWSER" ]; then echo "Invalid browser path." exit 1 fi elif [ ${#BROWSERS[@]} -eq 1 ]; then BROWSER="${BROWSERS[0]}" echo "Auto-detected browser: $BROWSER" read -p "Continue with this browser? [Y/n]: " choice if [[ "$choice" =~ ^[Nn]$ ]]; then read -p "Enter browser binary path: " BROWSER fi else echo "Multiple browsers detected:" for i in "${!BROWSERS[@]}"; do echo "[$i] ${BROWSERS[$i]}" done read -p "Select browser (0-$((${#BROWSERS[@]}-1))) or enter custom path: " choice if [[ "$choice" =~ ^[0-9]+$ ]] && [ "$choice" -lt "${#BROWSERS[@]}" ]; then BROWSER="${BROWSERS[$choice]}" else BROWSER="$choice" if [ ! -f "$BROWSER" ]; then echo "Invalid browser path." exit 1 fi fi fi echo "Using browser: $BROWSER" # check for backup and restore if exists if [ -f "$BROWSER.gamma.bak" ]; then echo "Backup found. Restoring original browser binary." cp "$BROWSER.gamma.bak" "$BROWSER" read -p "Backup restored. Press Enter to continue with patching or Ctrl+C to exit: " fi EXPONENT_ORIG=$(float_to_hex 1.2) EXPONENT_NEW=$(float_to_hex 2.2) CONTRAST_ORIG=$(float_to_hex 0.2) CONTRAST_NEW=$(float_to_hex 1.0) # Find first exponent offset exp_offset=$(bgrep "$EXPONENT_ORIG" "$BROWSER" 2>/dev/null | awk -F: '{print $2}' | head -1 | xargs) if [ -z "$exp_offset" ]; then echo "No exponent value found" exit 1 fi echo "First exponent at: 0x$exp_offset" exp_dec=$((0x$exp_offset)) # looking for contrast within 12 bytes found_contrast="" for offset in $(bgrep "$CONTRAST_ORIG" "$BROWSER" 2>/dev/null | awk -F: '{print $2}' | xargs); do con_dec=$((0x$offset)) diff=$((exp_dec - con_dec)) [ $diff -lt 0 ] && diff=$((con_dec - exp_dec)) if [ $diff -le 12 ]; then found_contrast=$offset echo "Found contrast at: 0x$offset (distance: $diff bytes)" break fi done if [ -z "$found_contrast" ]; then echo "No contrast value found near exponent. Contrast will remain at 0.2f. Continue anyway?" read -p "Press Enter to continue or Ctrl+C to exit: " else echo "Contrast found at: 0x$found_contrast" fi cp "$BROWSER" "$BROWSER.gamma.bak" # patch both echo -ne "$(xxd -r -p <<< ${EXPONENT_NEW// /})" | dd of="$BROWSER" bs=1 seek=$((0x$exp_offset)) conv=notrunc status=none if [ -z "$found_contrast" ]; then echo "No contrast value found, exponent patched only." exit 0 fi echo -ne "$(xxd -r -p <<< ${CONTRAST_NEW// /})" | dd of="$BROWSER" bs=1 seek=$((0x$found_contrast)) conv=notrunc status=none echo "Patched both values"
  • Dutch DigID on Vivaldi IOS (7.1)

    Vivaldi for iOS
    9
    · Foghunter
    2 Votes
    9 Posts
    662 Views
    Foghunter
    F
    Was an early 7.1 I think, but as another issue got a reply after many months and was not resolved as well AND this is no issue on chrome, edge, safari and a few others, I removed Vivaldi for the 3th time in a year. Perhaps the others have more insight in the issue but as all browsers I tried have no issue, I have my thoughts on where the bug resides. Let me say, it is not DigId.
  • Why can't I open a Tripadvisor webpage

    Vivaldi for macOS
    22
    · SchumiFlatOut
    0 Votes
    22 Posts
    180 Views
    S
    @Pathduck Not EVERY step apparently – I learned a lesson
  • Bug: Paypal forwarding leads to crash

    Desktop
    27
    · Dancer18
    0 Votes
    27 Posts
    227 Views
    Dancer18
    D
    @Pathduck I understood. However, I can't get to any other profile incl. guest profile. Yes, it happens with Archive.org too. Here is a link to my screen recording: https://mega.nz/file/GvQUmaxB#w5OC_lFOxIfFQojNCtmw__fuT_u5gyaBPZn7OO-cLLg
  • Vivaldi для Windows

    Pinned Moved Vivaldi для Windows
    5k
    · Shpankov
    9 Votes
    5k Posts
    5m Views
    Shpankov
    S
    @skapunker said in Vivaldi для Windows: @Shpankov said in Vivaldi для Windows: Вы проверяли на чистом профиле без расширений, приложений клинеров и т.д.? нет но я не думаю что у меня есть расширения возщействующие на историю Отправьте баг-репорт - пусть тестеры посмотрят.
  • Реклама

    Болталка
    5
    · vintranokto
    0 Votes
    5 Posts
    53 Views
    Shpankov
    S
    @vintranokto said in Реклама: жесткий диск был разбит, закладки остались только в облаке, но при попытке синхронизации у меня попросили вот этот самый пароль, который я никогда и не ставил Попробуйте ввести такой же пароль, как от учётной записи Vivaldi.net.
  • Extension for 1password

    Vivaldi for Android
    2
    · haynick2
    0 Votes
    2 Posts
    105 Views
    Y
    @haynick2 Vivialdi doesn't support extensions. But if you set 1Password as your password app in Android settings it should work to autofill passwords in Vivaldi.
  • 0 Votes
    3 Posts
    79 Views
    Hadden89
    H
    @FunkyTaro I didn't understood very well how choco works (or why using it) but if it does containerization - so you don't have a path to browse for - you might have more chances in contacting the owner repo