I'm trying to create Chrome extension for managing cookies I've created this simple code for this
manifest.json
{
"name" : "cookie_tester",
"version" : "0.1",
"description" : "Tool for cookie mechanism",
"permissions": [ "cookies", "tabs", "activeTab", "storage", "<all_urls>"],
"icons": {
"128": "icon.png"
},
"page_action": {
"default_icon": {
"128": "icon.png"
},
"default_title":"cookie_tester"
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"manifest_version": 2
}
background.js is here https://pastebin.com/raw/YpQRqvZr
So when I activate incognito window and click on extension icon: the cookie isn't created. cookie wasn't created
Of course I've allowed this extension to work in incognito mode allow in incognito Could you please help me to find out the reason? Chrome version is Version Version 71.0.3578.80 (Official Build) (64-bit) Thanks in advance