Google Chrome packaged apps deliver an experience as capable as a native app, but as safe as a web page. Just like web apps, packaged apps are written in HTML5, JavaScript, and CSS. But packaged apps look and behave like native apps, and they have native-like capabilities that are much more powerful ...
2
votes
2answers
47 views
Parsing JSON stream
I have an application that is using chrome.sockets. JSON is being passed to and from the socket which does not have a delimiter and is not prefixed with the length of the string.
Now the way sockets ...
2
votes
2answers
133 views
Is it possible to create multiple Chrome Hosted Apps for the same domain?
Our product has both a free component, and a full featured, subscription based web application. I've created a Chrome Hosted App - essentially an installable bookmark - for each both of those parts of ...
0
votes
2answers
50 views
Tech differences between chrome and firefox packages apps & other html5 apps in blackberry,tizen
Need to understand what are the basic technical differences between chrome and firefox packages apps & other html5 apps in blackberry,tizen.
All of them support apps in Html,Css,Js but where and ...
0
votes
2answers
93 views
Tool/SDK for sending messages to my iOS app users
I was wondering if there's a tool/sdk I can add to my ios app that will allow me to send messages (in the form of confirm dialogs/overlays) to users. I would like to notify users of new updates/new ...
0
votes
2answers
287 views
Angular UI Select2 dumping error in console while using in chrome App
I'm trying to use the following select2 example in chrome App using AngularJS and Angular-UI. It's working fine but unfortunately I'm getting the following error in chrome console every time clicking ...
1
vote
1answer
55 views
viewing a local pdf file in google chrome packaged apps
In my packaged app I would like to open pdf's stored in local filesystem. I've managed to open them if I select them using chrome.fileSystem.chooseEntry, but I can't find a way to do the same if the ...
1
vote
1answer
93 views
Copy/Paste does not work using Webview in Chrome Packaged Apps on OS X
In Mac OSX copy/paste does not work in a Chrome Packaged App.
I installed my app on both Windows XP Chrome and a Chrome OS. I'm able to copy/paste in both the Windows and Chrome OS environment but ...
1
vote
1answer
291 views
Chrome packaged app window maximizes to full-screen on Windows 8
When I maximize a packaged app window (created using chrome.app.window.create) on Windows 8 it is maximized to full-screen (hiding the taskbar).
Is there a way for the chrome window to be maximized ...
1
vote
1answer
81 views
chrome.app.window resize to smaller dimensions
I am creating a chrome.app.window (on Windows) and it seems that the dimensions of the window cannot be smaller than 130x26px. Is there a way of having a window smaller than 130x26px?
I have already ...
1
vote
1answer
165 views
Unload not available in sandboxed Chrome App
I'm using Dijit (Dojo Toolkit) to generate a HTML layout in a sandboxed page, but everytime I make a call for the dijit files, I get Uncaught unload is not available in packaged apps..
Now I'm not ...
1
vote
1answer
41 views
Is it possible to install an AppCache manifest file while offline?
In times where I want to install an offline Browser App in an offline setting, is it possible to install the AppCache manifest file so the app can show up at http://example.com/app.html? It doesn't ...
0
votes
1answer
27 views
'identity' requires Google Chrome trunk channel or newer, and this is the canary channel
I'm trying to play with Packaged Apps and the Identity API on latest Google Canary (Mac), however, when loading my app I get the following error: "'identity' requires Google Chrome trunk channel or ...
0
votes
1answer
27 views
Need a chome mobile to auto reload a tab/page
I have a google spreadsheet that is accessed via the web using an Android tablet. The android tablet uses Chrome, the mobile version obviously. The desktop version of Chrome has an extension for auto ...
0
votes
1answer
60 views
Google Spreadsheet App issue
I am trying to implement a spreadsheet app using Google app scripts. But I have several issue that does not mach my requirements. I have looked in to these issues and was unsuccessful to find answers ...
0
votes
1answer
55 views
Chrome Packaged App: chrome.fileSystem.chooseEntry multiple selection
I'm working on a Chrome Packaged App with a sandboxed section within it.
When a button is clicked in the sandbox, a postMessage message is passed up to the main application with a command for opening ...
0
votes
1answer
110 views
Blank window when launching Chrome Packaged app
When I launch my Chrome Packaged app It sounds but doesn't loads, I only get a blank (empty) window. I have checked already the console to be sure that there are not javascript errors.
I'm using this ...
0
votes
1answer
107 views
Chrome Packaged Background App Functionality & Behavior
We are exploring the inviting Chrome Packaged Apps for developing our HTML5 based Offline Web-Application and for that, chrome's background apps feature is quite interesting and complies to our ...
0
votes
1answer
191 views
Google Chrome Hosted App disable tab address bar, close other tabs, maximize window
Some of the tasks we are trying to achieve through Google Chrome Hosted App are as follows.
Once app is launched,
- the app will close all other tabs.
- the address bar will be disabled
...
0
votes
1answer
83 views
Get last 10 user's searches
I am writing chrome extension which requires to get last 10 user's searches from history. It seems this is saved in sqlite3 file 'History' in the user's profile directory. However the format of the ...
0
votes
1answer
104 views
sending message from extension to tab
I'm facing a problem sending messages from Chrome extension (popup.html) to a script injected in a selected tab. The code in popup.html is as follows:
alert("sending MSG");
...
1
vote
0answers
31 views
Handle client disconnecting/closing the socket
I am writing a Chrome packaged application and using the chrome.sockets API. The backend is written in Java.
When I close the socket in my Chrome app and check the status, it says it has disconnected ...
1
vote
0answers
76 views
Isochronous USB transfer callback has no data
The documentation is straightforward here: http://developer.chrome.com/apps/app_hardware.html#isochronous_transfers
It says the callback will be done on the findDevice.onEvent callback. However, the ...
1
vote
0answers
65 views
chrome.socket.read gives negative error code on self-addressed message
I'm having problems reading a message from myself using the chrome.socket API. I'm creating the socket as follows:
chrome.socket.create('udp', {}, function (_socketInfo) {
socketInfo = ...
0
votes
0answers
8 views
Quickly update Chrome App window after screen is back on
I am developing a Google chrome app on Windows 7 that is a simple clock/alarm. The javascript code calls the updateClock() function (using a timer) every one minute to render the new clock value ...
0
votes
0answers
55 views
RSA and AES encryption
I am looking at the feasibility for using Chrome apps for the front end of some applications I am working on. (As an aside, if anyone has any thoughts on this - put it in the comments)
I would be ...
0
votes
0answers
14 views
Can not find the chrome://newtab referrer in GA
We have a chrome web app up and running for 5 days now and the stats in the Developer Dashboard are showing plenty of installs and GA is showing an increase in traffic on the page that the app points ...
0
votes
0answers
64 views
toDATAURL JPEG not working properly in chrome packaged app
When I try a:
canvas.toDataURL('image/jpeg');
in a chrome packaged app the result is a png data url not a jpeg url. Also, I cannot put in a quality either ie.
canvas.toDataURL("image/jpeg",0.7);
An ...
0
votes
0answers
37 views
Accessing cookies from a chrome app
I can see that when I issue an xhr from my chrome app that it sends some cookies, and these cookies are kept track of in the app. Servers sending set-cookie headers are updating them correctly. I ...
0
votes
0answers
41 views
How to filter own requests invoked by 'legacy' packaged app (webRequest)
How to filter own requests without specifying and asking for tabs permissions to get id of tab where the app resides?
I'm using chrome.webRequest.addListener, I know that I can specify tabId, but it ...
0
votes
0answers
25 views
Using dojo in a chrome app?
2 issues here really, one that I've encountered before in another questions: Using dojo 1.8 in a packaged app (uncaught unload is not available in packaged apps)
And another that has to do with ...
0
votes
0answers
48 views
Hot to get file metada using chrome.filesystem?
I'm exploring the new feature of Google Chrome related to packaged apps and the FileSystem API. Now I'm wondering how do I obtain the metadata of file? Currently, I have the following working code:
...
0
votes
0answers
136 views
HTTP Server in Chrome Packaged App using Sockets API
I am trying to get a simple web page server from within a Google Chrome Packaged App. There is already a UDP server running within the app and working without any problems.
I am starting the ...
0
votes
0answers
431 views
Chrome experimental USB api does not find any device connected
I want to develop a chrome extension using the USB experimental api. I never managed to find my usb device connected. My starting point for this extension is this code:
knob example
I changed the vid ...
-1
votes
0answers
113 views
Chrome Packaged App Webview keylogging from top level window, how is this not a MASSIVE security issue?
I just forked and ran a Chrome Packaged App browser demo from Google.
Their new packaged apps api has a <webview> tag and you can listen to everything typed into it with this code:
...
