-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
53 lines (53 loc) · 1.17 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
49
50
51
52
53
{
"manifest_version": 2,
"name": "Enterprise",
"version": "1.0",
"description": "Does nothing much at the moment.",
"permissions": [
"activeTab",
"storage",
"unlimitedStorage",
"notifications",
"tabs",
"*://*/*"
],
"options_ui": {
"page": "ui/settings.html"
},
"background": {
"scripts": [
"external/browser-polyfill.js",
"background/initializer.js",
"background/observable.js",
"background/storage.js",
"background/client.js",
"background/login.js",
"background/stub.js",
"background/background.js"
]
},
"devtools_page": "animator/animator.html",
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"external/browser-polyfill.js",
"content/initializer.js",
"content/analyzer.js",
"content/progressCheck.js",
"content/metaExtractor.js",
"content/overWatch.js"
]
}
],
"browser_action": {
"default_icon": {
"48": "img/ext_icon_inactive_48.png",
"32": "img/ext_icon_inactive_32.png"
},
"default_title": "Enterprise",
"default_popup": "ui/popupProducer.html"
}
}