Bug description
Install plugin/addon/extension isn't showing
Expected behavior
Show install plugin/addon/extension button
Screenshots

I had to turn off my graphics card to fix this problem #264
Details:
- Operating System: windows11/10
- App version: latest
Additional context
fix the extension preload by adding a trusted document bypass
in console showing:
Failed to set the 'innerHTML' property on 'Element': This document requires 'TrustedHTML' assignment
how to get rid of it:
use this on extension preload before loading preload :
if (window.trustedTypes && window.trustedTypes.createPolicy) {
window.trustedTypes.createPolicy('default', {
createHTML: (string, sink) => string
});
}
Bug description
Expected behavior
Screenshots

I had to turn off my graphics card to fix this problem #264
Details:
Additional context
how to get rid of it:
use this on extension preload before loading preload :