-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
69 lines (68 loc) · 1.93 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "Jarvis",
"version": "0.5",
"browser_action": {
"default_title": "Jarvis",
"default_icon": {
"19": "media/icons/icon38.png",
"38": "media/icons/icon38.png"
}
},
"background": {
"page": "background/background.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"exclude_globs": ["*google*chrome*"],
"run_at": "document_end",
"js": [
"vendor/jquery/dist/jquery.min.js",
"vendor/angular/angular.min.js",
"vendor/angular-material/angular-material.min.js",
"vendor/angular-animate/angular-animate.min.js",
"vendor/angular-aria/angular-aria.min.js",
"vendor/highlight.js",
"content/app.js",
"content/app-controller.js",
"content/paragraph-detection/paragraph-detection-service.js",
"content/message-service.js",
"content/utils-service.js",
"content/paragraph-directive/highlight-service.js",
"content/paragraph-directive/keyword-selector-directive.js",
"content/paragraph-directive/anchor-directive.js",
"content/paragraph-directive/paragraph-directive.js",
"content/paragraph-directive/paragraph-directive-controller.js",
"content/result-dialog/result-dialog-controller.js"
],
"css": [
"vendor/angular-material/angular-material.min.css",
"common/angular-csp.css",
"content/styles.css",
"content/animate.css"
]
}
],
"web_accessible_resources": [
"content/*",
"media/*",
"vendor/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"manifest_version": 2,
"permissions": [
"tabs",
"<all_urls>",
"background",
"storage"
],
"options_ui": {
"page": "settings/settings.html",
"chrome_style": true
},
"icons": {
"16": "media/icons/icon38.png",
"48": "media/icons/icon38.png",
"128": "media/icons/icon38.png"
}
}