-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
21 lines (21 loc) · 889 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "PostSure",
"version": "1.0",
"description": "Analyze, monitor, and maintain your posture — all throughout the day.",
"manifest_version": 2,
"icons": {
"256": "./static/images/chair256.png"
},
"permissions": [
"activeTab",
"notifications"
],
"browser_action": {
"default_popup": "./static/html/popup.html",
"default_icon": {
"256": "./static/images/chair256.png"
}
},
"content_security_policy":"script-src 'self' 'unsafe-eval' https://cdn.jsdelivr.net/npm/@tensorflow/tfjs https://cdn.jsdelivr.net/npm/@tensorflow-models/posenet https://www.gstatic.com/firebasejs/7.24.0/firebase-app.js https://www.gstatic.com/firebasejs/7.24.0/firebase-firestore.js https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js; object-src 'self'",
"options_page": "./static/html/options.html"
}