-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
44 lines (42 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
{
"manifest_version": 2,
"name": "Home Teaching Board - lds.org (Beta)",
"description": "(Beta) View your home teaching companionships and assignments in a full-screen drag and drop style board.",
"version": "0.7.0",
"browser_action": {
"default_icon": "images/icon.png",
"default_popup": "html/popup.html"
},
"icons": {
"128": "images/icon128.png"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"*://*.lds.org/htvt/*"
],
"css": [
"lib/jquery-ui/jquery-ui.min.css",
"node_modules/font-awesome/css/font-awesome.min.css",
"css/HomeTeachingBoard.css"
],
"js": [
"node_modules/jquery/dist/jquery.min.js",
"lib/jquery-ui/jquery-ui.min.js",
"node_modules/angular/angular.min.js",
"node_modules/bootstrap/dist/js/bootstrap.min.js",
"node_modules/chance/dist/chance.min.js",
"js/HomeTeachingBoard.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"html/HomeTeachingBoard.html",
"node_modules/font-awesome/fonts/*.*"
]
}