forked from YummyPenguins/Chrome-NoteTakerExtension
-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
41 lines (39 loc) · 946 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
{
"manifest_version": 2,
"name": "Study Buddy",
"description": "Keep your notes and annotations organized for the webpages you're studying!",
"version": "0.1",
"browser_action": {
"icons": ["yummypanguin.png"],
"default_icon": "yummypanguin.png",
"default_popup": "/src/browser_action/browser_action.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": ["noteTakerHighlight.css"],
"js": ["jquery-3.2.1.min.js", "jquery.highlight.js", "src/highlightInit.js"]
}
],
"background": {
"scripts": [
"jquery-3.2.1.min.js",
"jquery.highlight.js",
"env.js",
"node_modules/auth0-chrome/dist/auth0chrome.min.js",
"src/main.js",
"src/browser_action/browser_action.js"
],
"persistent": false
},
"permissions": [
"activeTab",
"storage",
"<all_urls>",
"identity",
"notifications",
"background"
]
}