-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
45 lines (45 loc) · 1.06 KB
/
manifest.json
File metadata and controls
45 lines (45 loc) · 1.06 KB
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
{
"manifest_version": 3,
"name": "Next Assistant",
"version": "0.0",
"description": "Hỗ trợ học tập trực tuyến trên FPT Edunext",
"action": {
"default_popup": "./popup/popup.html"
},
"default_locale": "vi",
"options_page": "./popup/popup.html",
"homepage_url": "https://fptuniversity-my.sharepoint.com/:f:/g/personal/quyennthe180534_fpt_edu_vn/EnlEhTofJD5PoIORCsha6mcBJgjilkN2SXinDIFIkjbAQQ?e=GbclcS",
"web_accessible_resources": [
{
"resources": [
"/_locales/vi/messages.json",
"/_locales/en/messages.json"
],
"matches": ["<all_urls>"]
}
],
"permissions": [
"storage"
],
"background": {
"service_worker": "./service/service-worker.js"
},
"content_scripts": [
{
"matches": [
"*://fu-edunext.fpt.edu.vn/course/activity/question?id=*"
],
"js": [
"./utils/storage.js",
"./content/auto_edunext.js"
],
"run_at": "document_end"
}
],
"icons":{
"16": "./assets/logo.png",
"32": "./assets/logo.png",
"48": "./assets/logo.png",
"128": "./assets/logo.png"
}
}