mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
22 lines
591 B
JSON
22 lines
591 B
JSON
{
|
|
"browser_action": {
|
|
"browser_style": true,
|
|
"default_title": "List cookies in the active tab",
|
|
"default_popup": "cookies.html",
|
|
"default_icon": {
|
|
"19": "icons/default19.png",
|
|
"38": "icons/default38.png"
|
|
}
|
|
},
|
|
"description": "List cookies in the active tab.",
|
|
"icons": {
|
|
"48": "icons/cookie.png",
|
|
"96": "icons/cookie@2x.png"
|
|
},
|
|
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/list-cookies",
|
|
"manifest_version": 2,
|
|
"name": "List cookies",
|
|
"version": "1.0",
|
|
"permissions": ["cookies","<all_urls>","tabs"]
|
|
}
|