Finally made it work, however I don't know why it was crashing :/
Cleaned up all cookies related to any Vinted sites without opening
the page, via:
chrome://settings/content/all?searchSubpage=vinted
Closed Chromium and cleaned up some dirs:
---8<---
#!/bin/sh
cd ~/.config/chromium || exit 1
rm -vf ~/.config/chromium/chrome.core
rm -vf ~/Downloads/chrome.core
rm -vf ~/chrome.core
rm -rf ~/.cache/chromium
for dir in \
'BrowserMetrics' \
'Default/Application Cache' \
'Default/AutofillAiModelCache' \
'Default/Code Cache' \
'Default/DawnCache' \
'Default/DawnGraphiteCache' \
'Default/DawnWebGPUCache' \
'Default/Extensions/Temp' \
'Default/GPUCache' \
'Default/History Provider Cache' \
'Default/Service Worker' \
'Default/Shared Dictionary/cache' \
'Default/VideoDecodeStats' \
'Default/optimization_guide_hint_cache_store' \
'GPUPersistentCache' \
'GrShaderCache' \
'GraphiteDawnCache' \
'MEIPreload' \
'ShaderCache' \
'WasmTtsEngine' \
'component_crx_cache' \
'extensions_crx_cache'
do
rm -rvf "$dir"
done
--->8---
Because I did both, maybe cookies where good enough. I am not sure.
--
Regards,
Mikolaj