I am currently porting a Chrome extension to Edge extension.
I have set "cookies" and host permissions in manifest.json
file.
I even used details like "url", "name" and "domain" to get the cookie, but nothing works.
Is this a new bug introduced in the recent anniversary update from Microsoft?
Edited This is the code syntax i am using,
chrome.cookies.getAll({url : "siteUrl", domain : "siteDomain", name : "ticketName"},
function(cookies)
{
console.error(cookies.length);
});