forked from Vashistht/HackMit_PersonaLearn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
42 lines (42 loc) · 1.05 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
{
"name": "PersonaLearn",
"version": "0.1.0",
"description": "A personalized education recommendation platform.",
"permissions": ["storage", "tabs"],
"host_permissions": [
"https://*.youtube.com/*",
"https://personalearn.herokuapp.com/*",
"http://localhost:3000/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://*.youtube.com/*"],
"js": ["utils.js", "contentScript.js"],
"css": ["slider.css"]
}
],
"web_accessible_resources": [
{
"resources": [
"assets/bookmark.png",
"assets/play.png",
"assets/delete.png",
"assets/save.png"
],
"matches": ["https://*.youtube.com/*"]
}
],
"action": {
"default_icon": {
"16": "assets/ext-icon.png",
"24": "assets/ext-icon.png",
"32": "assets/ext-icon.png"
},
"default_title": "PersonaLearn",
"default_popup": "popup.html"
},
"manifest_version": 3
}