Browse Source

manifest update

Nicolas Petton 9 years ago
parent
commit
5cf85cd1aa
1 changed files with 8 additions and 2 deletions
  1. 8 2
      manifest.json

+ 8 - 2
manifest.json

@@ -3,11 +3,17 @@
     "description": "Amberis a Smalltalk that runs on the JS runtime",
     "version": "0.12.6",
     "manifest_version": 2,
-    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
     "app": {
         "background": {
             "scripts": [ "background.js" ]
         }
     },
-    "icons": { "16": "amber-16.png", "128": "amber-128.png" }
+    "sandbox": {
+        "pages": ["index.html"]
+    },
+    "permissions": [
+        {"fileSystem": ["write", "retainEntries", "directory"]},
+        "storage"
+    ],
+    "16": "amber-16.png", "128": "amber-128.png" }
 }