I have a chrome extension I have made and I want to convert it to Edge using the Microsoft Edge Extension Converter, everything works fine except for the popups tabs and cookies permissions
"content_scripts": [
{
"matches": [
"http://www.website.com/*"
],
"js": [
"jquery-3.1.1.min.js",
"startup.js",
],
"css": [
"font-awesome.css"
],
"run_at": "document_end",
"permissions": [
"cookies",
"tabs"
]
}
],
If i were to remove
"permissions": [
"cookies",
"tabs"
]
The extension will load however the communication between the popup and the window will not work, but if i leave the code in i get the following error
Manifest parsing error: Invalid field 'permissions' found in 'content_scripts'
.