Cookie Manager. Support Edit Cookie, Add Cookie, Delete Cookie and Search Cookie, Export/Import Cookies.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "__MSG_name__",
"description": "__MSG_description__",
"version": "0.0.1",
"icons": {
"19": "img/icon19.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"content_security_policy": "script-src 'self'; img-src 'self' data: *; object-src 'self'",
"browser_action": {
"default_title": "__MSG_name__",
"default_icon": "img/icon19.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"js/jquery.js",
"js/system.js",
"js/background.js"
],
"persistent": true
},
"permissions": [
"tabs",
"storage",
"cookies",
"http://*/*.ico",
"https://*/*.ico",
"file://*/*.ico"
],
"default_locale": "en",
"manifest_version": 2,
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}