The
inline installation instructs us to use the "window.chrome.app.isInstalled" property to check if an app is installed or not before we attempt to install the app from the Chrome Web Store. The trouble is that all the apps are considered "installed" as soon as one of the the apps is installed because the Chrome browser will return "window.chrome.app.isInstalled" as true for all the pages (JavaScript) from the same web site that hosts the apps. In fact, the Chrome browser will actually load the NaCl apps that have never gone through the installation procedure and don't show up in the browser "Apps" section.
Is that a bug?
The problem becomes serious if your apps rely on the installation procedure that takes care of the "permissions" specified in the manifest.json of the Chrome Web Store. Your NaCl apps will complete loading and run, but will crash when they attempt to access the resources such as the file system because of lack of the permissions that have been left out by the installation procedure.