-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (37 loc) · 1.18 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
{
"manifest_version": 2,
"name": "Makerflow",
"short_name": "Makerflow",
"version": "1.0.5",
"description": "Makerflow is deep work and collaboration assistant for developers. Signup for your FREE account at https://makerflow.co",
"icons": {
"48": "conimages/icon.png",
"96": "conimages/icon@2.png"
},
"background": {
"scripts": ["/assets/js/jquery-3.6.0.min.js","/assets/js/moment.min.js","/assets/js/env.js","/assets/js/background.js"]
},
"browser_action": {
"browser_style": false,
"default_title": "Makerflow",
"default_popup": "/index.html"
},
"content_scripts": [ {
"all_frames": true,
"match_about_blank": true,
"js": [ "/assets/js/jquery-3.6.0.min.js", "/assets/js/cn.js" ],
"css":["/assets/css/content.css"],
"matches": [ "<all_urls>" ]
}
],
"content_security_policy": "script-src 'self' https://cdnjs.cloudflare.com 'unsafe-eval'; object-src 'self'",
"permissions": [
"tabs",
"storage",
"<all_urls>"
],
"web_accessible_resources": [
"/conimages/*",
"overlay.html"
]
}