-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
34 lines (34 loc) · 947 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
{
"name": "Gratitude Forest",
"description": "Grateful message grows into a tree",
"version": "0.0.0.1",
"permissions": [
"storage",
"unlimitedStorage"
],
"background": {
"scripts": [
"js/libraries/math2.js",
"js/libraries/stats.js",
"js/libraries/three.min.js",
"js/libraries/geometryHelpers.js",
"js/libraries/tweenmax.js",
"js/libraries/scenecolors.js",
"js/libraries/orbitcontrols.js",
"js/libraries/custommesh.js",
"js/libraries/dat.gui.min.js",
"js/foliage.js",
"js/tree.js",
"js/particle.js",
"js/scene.js",
"js/extension.js"
],
"persistent": false
},
"optional_permissions": ["notifications"],
"chrome_url_overrides": {
"newtab": "index.html"
},
"manifest_version": 2,
"content_security_policy": "script-src 'self'; object-src 'self'"
}