Folder Named "component_crx_cache"
-
Since I updated to Version 6.2, I've noticed that Vivaldi creates a folder with the name "component_crx_cache" in the User Data folder.
Could someone tell me what that folder is? -
Interesting, they seems to be in the same format as Chrome Extensions (hence the crx in name), they can be opened as zip files, in one named
khaoiebndkojlmppeemjhbpbandiljpe_1.a2abb5cf57d3ad529ade67df01567446c6c6a5225b29715119e17c0e0aea6c03
I can see download_file_types.pb so it's probably a way of chrome/ium to update its own files. -
Yeah, just cache of downloaded components required for Chromium to function. Can probably be safely deleted, but will just get created again.
$ for f in $(ls *_1*); do unzip -qo $f manifest.json 2>/dev/null; grep '"name":' manifest.json; done "name": "pkiMetadata", "name": "Subresource Filtering Rules", "name": "First Party Sets", "name": "crl-set-13816136792183804859.data", "name": "hyphens-data", "name": "safetyTips", "name": "fileTypePolicies", "name": "Optimization Hints", "name": "OnDeviceHeadSuggestENGB500000", "name": "WidevineCdm",
The only one of "slight worry" here is First Party Sets - Google's sneaky attempt at overriding blocking of third-party cookies ...
https://github.com/WICG/first-party-sets
https://brave.com/web-standards-at-brave/8-first-party-sets/
Vivaldi doesn't use this anyway, but probably should nuke the component completely like they did with FLoC. -
Thanks to both of you for the information.