From 38c44dc9663dab7d8863d7101f705bf0f791cf80 Mon Sep 17 00:00:00 2001 From: John Mayhew Date: Thu, 19 Apr 2012 14:33:45 -0700 Subject: Updated Manifest.json for the CRX build --- manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'manifest.json') diff --git a/manifest.json b/manifest.json index 50e1cba1..630963d2 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "Ninja", "description": "Ninja HTML5 Authoring Tool - Alpha Release", - "version": "0.5.1.0", + "version": "0.5.3.0", "app": { "launch": { "local_path": "index.html" @@ -22,7 +22,7 @@ "features": ["css3d", "webgl"] } }, - "minimum_chrome_version": "17.0.0.0", + "minimum_chrome_version": "18.0.1025.162", "offline_enabled": true, "update_url": "http://ninjateam.am.mot.com/NinjaApp/update.xml" } \ No newline at end of file -- cgit v1.2.3 From 0b8ee0f03d1a9c6582f345935885ff293436d513 Mon Sep 17 00:00:00 2001 From: John Mayhew Date: Thu, 19 Apr 2012 15:47:52 -0700 Subject: Removed hack that required us to use a bogus url for host permissions. Chrome 18 now sends the "Origin" request header if we request host permissions for http://localhost:/ Setting the new and proper host permissions. --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'manifest.json') diff --git a/manifest.json b/manifest.json index 630963d2..42fe43f4 100644 --- a/manifest.json +++ b/manifest.json @@ -15,7 +15,7 @@ "notifications", "webRequest", "webRequestBlocking", - "http://www.google.com/*" + "http://localhost:/" ], "requirements": { "3D": { -- cgit v1.2.3 From 38e6cb2e1fbaf432478263376c4eef2be56c84c0 Mon Sep 17 00:00:00 2001 From: John Mayhew Date: Fri, 20 Apr 2012 11:32:12 -0700 Subject: fixed injection caused by inability to add our webRequest listener due to an incorrect host permission. Reverting to the old hack fix. --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'manifest.json') diff --git a/manifest.json b/manifest.json index 42fe43f4..b46c9826 100644 --- a/manifest.json +++ b/manifest.json @@ -15,7 +15,7 @@ "notifications", "webRequest", "webRequestBlocking", - "http://localhost:/" + "http://ninja/*" ], "requirements": { "3D": { -- cgit v1.2.3