I can't get my head around how to upgrade my chrome extension manifest v2 with the options page to v3. I got error The chrome_style option cannot be used with manifest version 3.
I checked https://developer.chrome.com/extensions/migrating_to_manifest_v3 but it doesn't talk about this.
Any idea what it needs to be changed in my manifest here :-
//Manifest v2
"options_ui": {
"chrome_style": true,
"page": "options.html",
"open_in_tab": false
},
Solution:
As suggested, It's OK when I remove "chrome_style": true,