0
votes
3answers
25 views

Chrome app closing window

Ok so i am a beginner programmer and was using the template google gave me to make a test app. I wanted that whenn someone clicked a text button, that it would close the window. The window uses HTML ...
0
votes
1answer
39 views

Can the code in a .crx chrome app have write access to the files within itself (the crx)?

I have a crx that has a number of files that I want to be able to change over time. For example, it might have this structure: index.html js/code.js images/someimage.png I want to be able to use ...
0
votes
1answer
20 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 ...
1
vote
0answers
26 views

Playing local video file in a Chrome Packaged App

Is it possible to play a local video file from a packaged app? I have already written the code to choose the file(chrome.fileSystem.chooseEntry) and identify the ...
1
vote
0answers
16 views

After adding ExtensionInstallSources preference with my URL to Chrome Preferences, still won't allow installing “.crx” packaged app

I added the preference ExtensionInstallSources (as per: http://www.chromium.org/administrators/policy-list-3#ExtensionInstallSources ), it still is not allowing me to install my "app.crx" from my URL. ...
1
vote
1answer
25 views

Replacement for fileEntry.toURL() in Chrome Packaged Apps

I'm using the HTML5 FileSystem API in a Chrome Packaged App to write to a log file. I want the user to be able to download this file, so I tried something along the lines of: ...
0
votes
1answer
35 views

load html page on click on packaged app

I'm trying out packaged apps, and I would like to know how to load a new html page when clicked. So I have to pages: index.html and settings.html. When settings is clicked, settings.html is loaded. ...
0
votes
1answer
41 views

Google Chrome file system api: bug in sample code?

I am trying to run this example code: https://github.com/GoogleChrome/chrome-app-samples/tree/master/filesystem-access as well as this: ...
0
votes
2answers
113 views

Chrome app: accessing sandboxed iframe from parent window

I'm using knockoutjs in my google chrome app. To be able to use knockout, I have to define the real application.html as sandox page and include it as an iframe in a dummy container. Application ...
-3
votes
1answer
43 views

Developing Offline chrome application with JSF

Can you please direct me to a reference on developing offline chrome application with Java Server Faces?
1
vote
1answer
46 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 ...
0
votes
1answer
36 views

chrome.identity API availability [closed]

Does anyone know when the chrome.identity API will make it to stable? http://developer.chrome.com/apps/app_identity.html
0
votes
2answers
77 views

'fileSystem' is only allowed for packaged apps, and this is a legacy packaged app

I need to use the fileSystem permission in the manifest.js, so I can read/write files from my Chrome extension. When I load my extension with the "Load unpacked extension" button, Chrome displays: ...
0
votes
1answer
86 views

Save a file to filesystem with chrome packaged app

I have a variable full of css attributes that I would like to use to create a CSS file and save it to the apps file directory. How would I go about this in a chrome packaged app?
0
votes
2answers
68 views

Saving a file from a chrome packaged app

I have a Chrome packaged app that has taken me a while to get my head around but I finally have it working. However I have now come across another problem. Is it possible to save a variable from my ...
1
vote
3answers
73 views

Chrome packaged apps local root html links via Sandbox Manifest 2

I'm getting a red error when I click on any local url inside the app it says. Can't open same-window link to "chrome-extension://nmajpganl/options.html"; try target="_blank". index.html:1 Is there ...
0
votes
0answers
38 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 ...
1
vote
1answer
96 views

Communicating between a Chrome packaged app and a Chrome extension?

I need to combine functionality available only in a Chrome packaged app (access to syncFileSystem) and functionality available only in a Chrome extension (injecting a script into a 3rd party website). ...
0
votes
2answers
155 views

Loading local content through XHR in a Chrome packaged app

I'm trying to load in a web app that I've built using Backbone and it pulls in JSON and HTML template files that are stored locally. I was wondering with Chrome packaged apps whether it's possible to ...
0
votes
2answers
109 views

Google Chrome Packaged App - FTP mechanism

I'm looking to perform a simple FTP RETR of an image at a known server location from within a Google Chrome Packaged App. I'm exploring the following avenues: XMLHttpRequest (which throws Exception ...
1
vote
1answer
82 views

How do you get the device name (or hostname) from a Chrome Extension?

Is there a way to retrieve the device name from a Chrome Extension? Ideally I'd like to get the same String that is displayed in the 'Other devices' menu on the new tab page... Is that piece of ...
0
votes
0answers
45 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: ...
1
vote
1answer
88 views

Difference between Panel and Shell window type

I can not understand, from the official documentation, the exact difference between those two: Use the chrome.app.window module to create windows. Windows can either be shells or panels. Shell ...
0
votes
2answers
169 views

Invalid manifest file Chrome Web Store (crx file can't be updated)

We've recently updated manifest file from Developer Dashboard with exactly the same one (with higher "version"). After that, users, who try to install our app are receiving error "Invalid manifest ...
0
votes
1answer
105 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
0answers
130 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 ...
2
votes
2answers
126 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 ...
1
vote
1answer
253 views

Difference between a Packaged App and a Legacy Packaged App in Chrome

Basically packaged apps do not appear on the Chrome App Store, but legacy packaged apps do. The documentation states that Warning: All content in this doc refers to the legacy version of packaged ...
0
votes
1answer
129 views

How to open chrome apps as a regular tab with its api?

I want to develop a packaged chrome app (not extension) and hope to could open it as a regular tab like the image showing below. I followed the official docs to make my first app: ...
0
votes
2answers
178 views

Can you still create a Chrome packaged app in the browser with manifest 2.0?

All of the examples I've seen show apps launching in their own windows. This may be great an all for chromebook/chrome os, but is there still an option to launch in a browser tab?
0
votes
1answer
108 views

Is it possible to make an HTML page and local Javascript library into a Chrome extension with data storage?

I have been trying to author a Chrome extension recently and have been hitting major problems it seems every step of the way. Currently I have a local HTML page that is using a local Javascript ...
2
votes
1answer
269 views

Run Chrome Packaged apps inside of browser tab

I'd like to use new APIs provided for Chrome Packaged Apps, but also want to preserve ability to open some local URL in my current browser environment, is it possible? All Packaged Apps tutorials are ...
0
votes
1answer
105 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
2answers
84 views

Losing data between updates (chrome packaged app)

I'm working on a chrome packaged app that saves a lot of data locally. I recently put it on the chrome store. To my dismay, whenever my user's chrome installation updated the app (v1.1.1 to v1.1.2 for ...
1
vote
1answer
144 views

printing support on chrome packaged apps

I can't seem to find any example of window.print() support in chrome packaged apps - can someone please post an example? I'm using this function clickHandler(e) { window.print(); } ...
0
votes
1answer
189 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
107 views

Chrome Packaged App AppWindow hide() and close() missing?

Been experimenting with packaged apps using 23.0.1271.97, running into odd issues here and there. Most recently, playing around with a multiple window app, I can create multiple windows fine, but the ...
0
votes
2answers
249 views

alert doesn't work in packaged apps

I'm studying webview in packaged apps of chrome and I'm studying browser sample from chrome. in browser.js file in onload function, I added alert("webview apps"); at the first row and the code ...
0
votes
1answer
600 views

Chrome packaged app UDP sockets not working

I'm trying to get UDP sockets working for a packaged app using Chrome Canary (currently version 25). I am pretty confused by the fact the UDP example here conflicts with the reference documentation ...
0
votes
1answer
82 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
100 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"); ...
3
votes
1answer
333 views

Chrome packaged apps: Permission for getUserMedia() audio input

I'm porting my web app over to a Chrome packaged app and I heavily use the Web Audio API (which works great), but I use getUserMedia() to get line in audio. Normally a status bar comes down asking ...
1
vote
1answer
161 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
2answers
199 views

Paste an Image from Clipboard in Chrome

I am working on editor where I would like to provide a button by clicking which I want to paste an image which is already copied to the clip board. I couldn't do this as the browsers doesn't allow to ...
0
votes
1answer
31 views

Address individual content scripts in chrome

if you have an extension with multiple content scripts injected into a single page, is it possible to address a specific content script on the page rather than broadcasting to all content scripts? ...
0
votes
1answer
92 views

Platform compatibility of Chrome Stand Alone Apps

I'm doing some reading on Google Chrome stand-alone applications and I see they are distributed like Chrome Extensions, and by all means, they seem work just like Chrome Extensions, so I assume they ...
2
votes
3answers
490 views

Google chrome extension : is it possible to get console output (js errors, console.log or etc)

I am developing chrome extension, and the thing that i really need is to get console output as object. Is it possible to get any of that in chrome extension popup.html/popup.js or somewhere ? I have ...
2
votes
3answers
443 views

Google Chrome 'onLaunched' error in plugin

I am following the google chrome web app development on http://developer.chrome.com/trunk/apps/first_app.html and the web app is not launching. when i click on the app icon on the page it closes the ...
2
votes
1answer
211 views

Where are the min/max buttons on new Chrome Packaged Apps?

I'm using the dev-channel v23 of Chrome and I'm working with the new Chrome Packaged Apps platfrom. One purpose of the new platform is to take packaged apps "out of the browser" and give the packaged ...

1 2