-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
43 lines (43 loc) · 987 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "Lympha",
"description": "Remove cookies of the specific site.",
"manifest_version": 2,
"version": "1.0",
"homepage_url": "https://github.com/MARNUTUX/lympha-cookies",
"applications": {
"gecko": {
"id": "@lympha",
"strict_min_version": "48.0"
}
},
"icons": {
"48": "data/icon.png"
},
"permissions": [
"tabs",
"<all_urls>",
"cookies",
"notifications",
"contextMenus",
"storage"
],
"browser_action": {
"default_icon": "data/icon.png",
"default_title": "Clean it!"
},
"options_ui": {
"page": "options/options.html"
},
"background": {
"scripts": ["main.js"]
},
"default_locale": "en",
"commands": {
"toggle-feature": {
"suggested_key": {
"default": "Ctrl+Shift+L"
},
"description": "Remove cookies"
}
}
}