You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, my settings are preserved. But this extension adds its own part that basically duplicates (overwrites?) my simple settings. "Use dynamic url" is also changed from flase to true.
It's ok to generate a section of manifest if I don't supply my own section, but it's not OK just to ignore my settings if these are provided.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
To cut a long story short, here is a part of my manifest.js file:
web_accessible_resources: [ { resources: [ 'assets/*', 'css/*', 'icons/*', 'img/*' ], matches: ["<all_urls>"], use_dynamic_url: false }, ],
...and here is what
npm run build
generates from it:"web_accessible_resources": [ { "matches": [ "<all_urls>" ], "resources": [ "assets/*", "css/*", "icons/*", "img/*" ], "use_dynamic_url": false }, { "matches": [ "http://localhost:5173/*", "https://movies.luka.in.rs/*", "https://rmz.cr/*", "https://www.imdb.com/*", "https://www.imdb.com/*", "https://www.luka.in.rs/*" ], "resources": [ "assets/chunk-CW84PFo6.js", "assets/chunk-CLZG3LjF.js", "assets/chunk-C0qwE84I.js", "assets/chunk-C7XPqjKU.js" ], "use_dynamic_url": true } ],
So, my settings are preserved. But this extension adds its own part that basically duplicates (overwrites?) my simple settings. "Use dynamic url" is also changed from flase to true.
It's ok to generate a section of manifest if I don't supply my own section, but it's not OK just to ignore my settings if these are provided.
Beta Was this translation helpful? Give feedback.
All reactions