-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
48 lines (48 loc) · 1.13 KB
/
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
47
48
{
"applications": {
"gecko": {
"id": "{d38c41da-b1ec-4f80-a310-ac90bb1ec96b}"
}
},
"manifest_version": 2,
"name": "Umbraco Helper Extension",
"homepage_url": "https://github.com/Harvzor/Umbraco-Helper-Extension",
"version": "1.0.3",
"icons": {
"32": "icons/32-blue.png",
"64": "icons/64-blue.png",
"128": "icons/128-blue.png"
},
"description": "A browser extension which helps you work quicker with Umbraco with small productivity increasing features.",
"background": {
"scripts": [
"/scripts/browser-polyfill.min.js",
"/scripts/urlTracker.js",
"/scripts/settings.js",
"/scripts/shared.js",
"/scripts/helpers.js",
"/scripts/notify.js",
"/scripts/log.js",
"main.js"
]
},
"browser_action": {
"default_icon": "icons/64-blue.png",
"default_title": "Umbraco Helper"
},
"permissions": [
"tabs",
"storage",
"cookies",
"webNavigation",
"notifications",
"http://*/",
"https://*/",
"contextMenus",
"menus"
],
"options_ui": {
"browser_style": true,
"page": "options.html"
}
}