-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmanifest.json
46 lines (42 loc) · 900 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
44
45
46
{
"name": "__MSG_extensionName__",
"version": "4.2",
"manifest_version": 2,
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/TenSoja/clear-cache",
"author": "TenSoja",
"icons": {
"16": "icons/broom.svg",
"32": "icons/broom.svg",
"48": "icons/broom.svg",
"96": "icons/broom.svg",
"128": "icons/broom.svg"
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"browser_action": {
"default_icon": "icons/broom.svg",
"default_title": "Clear Cache"
},
"permissions": [
"browsingData",
"notifications",
"storage"
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "F9"
},
"description": "Shortcut for Clear Cache"
}
},
"default_locale": "en"
}