Merge branch 'next'
diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md
index d97846f..309c8be 100644
--- a/doc/CHANGELOG.md
+++ b/doc/CHANGELOG.md
@@ -6,6 +6,7 @@
 * Added userAgent emulation
 * Added initial support for Cordova/PhoneGap 1.6 (alpha)
 * (fix) Improved injection routine
+* (known issue) Disabled loading in file:/// scheme
 
 ## v0.9.3 - March 10, 2012
 
diff --git a/ext/chromium/manifest.json b/ext/chromium/manifest.json
index b2cd941..1b7ecf0 100644
--- a/ext/chromium/manifest.json
+++ b/ext/chromium/manifest.json
@@ -23,7 +23,7 @@
         "matches": ["http://*/*","https://*/*","file:///*"],
         "all_frames": true
     }],
-    "permissions": ["tabs", "unlimitedStorage", "notifications", "contextMenus", "webRequest", "webRequestBlocking", "http://*/*", "https://*/*", "file:///*/*"],
+    "permissions": ["tabs", "unlimitedStorage", "notifications", "contextMenus", "webRequest", "webRequestBlocking", "http://*/*", "https://*/*"],
     "description": "A browser based html5 mobile application development and testing tool",
     "file_name": "manifest.json",
     "update_page": "update.html"