0
votes
1answer
16 views

How do I get the absolute path of the chrome extensions directory?

I'm writing an app that has full access to the file system and I want to be able to get the absolute path of my extension's directory. How would I do this? My app has permissions to ...
0
votes
1answer
17 views

How do I get the checkbox “Allow access to file URLs” to show up next to my app? I have file write permissions in manifest

More Info/Update I packaged and installed google's own sample app showing filesystem access and it also does not show the checkbox! You can find it here: ...
0
votes
1answer
19 views

How would I read the file contents of a file in my app/extension's crx?

I want to include some files in my crx and then be able to read them in as data (into a string or Blob). How would I do this? Is there a way to use the FileSystem API for this?
0
votes
0answers
14 views

Update extension to packaged app in webstore

I currently have an extension published in chrome web store. Now with some additional features, It made more sense to update that to an packaged app. I have changed the extension to Packaged App. Now ...
0
votes
1answer
19 views

Can an app or extension open files on system with permission “<all_urls>”?

I thought Chrome apps were sandboxed, but I see that you can allow permissions for file:// urls, and there's a special matching pattern: <all_urls>     Matches any URL ...
0
votes
1answer
17 views

Chrome keeps all versions of my hosted app/extension (takes up MB's). How tell it to remove old versions? To downgrade?

I noticed that Google Chrome has kept all the versions (unpacked) of my hosted app. Even though it's delivered (via the update_url) as a .crx file, in the extensions folder, it has 47 folders and ...
0
votes
1answer
17 views

If my app was granted FileSystem access, browser/computer shutdown and restarted, do I need to call “webkitRequestFileSystem” again?

Everytime I want to access the filesystem, does my app need to call webkitRequestFileSystem? Or is there some way to persist the filesystem stored in a variable across shutdowns and restarts? For ...
0
votes
2answers
50 views

How do I keep my app from going inactive?

In my manifest I have: "app": { "background": { "scripts": [ "main.js" ], "persistent": true } } but it still shows Inspect views: ...
0
votes
3answers
53 views

Why is `onversionchange` never called in Chrome 27?

When I try to upgrade the database, despite a IDBVersionChangeEvent event being thrown (it gets sent to my onupgrade callback), onversionchange is never called! This leads to me having a blocked ...
0
votes
3answers
30 views

How can I launch a Chrome Packaged App through javascript?

I want to be able to launch my packaged chrome app via javascript either on-page or through an extension. Am I able to do this? I have done a fair amount of research with no answer in either ...
0
votes
2answers
48 views

Is there a way to programatically put Chrome browser into kiosk mode?

I'm writing a Chrome app that needs to be run fullscreen and prevent users from exiting full screen (i.e. kiosk mode). Right now, the only thing I've been able to find is the command-line switch but ...
0
votes
1answer
45 views

When calling a function (in a loop) which uses a callback, how pass variables in and have them not change?

I'm calling sendMessage in a loop for a bunch of appIds that are in an array. When my callback is called, I need to check for an error and then "blacklist" the appId that has the error. The problem is ...
0
votes
1answer
18 views

Why does chrome.runtime.sendMessage result in my callback being called twice when there's an error?

I have the following code in my background script. I send a message to another app, but if it fails, this gets called twice (note: my callback is called twice. My code calling sendMessage is only ...
0
votes
1answer
30 views

How catch (or know about) chrome.runtime.sendMessage Port Error?

When I try to send a message to another extension, occasionally I might have an invalid id (the extension may have been removed), but sendMessage does not ever notify me of this. As far as I can tell, ...
0
votes
2answers
67 views

IndexedDB can make database unreachable (getting blocked), how unblock?

UPDATE I discovered the issue is that it's blocked. Despite the database always being created and upgraded by the same extension, it does not get closed. So now I'm getting the "onblocked" function ...
0
votes
0answers
40 views

Why does Chrome stop updating chrome app? (log files/errors included)

I've created a packaged app. I've properly set the update_url (I confirmed this as the first time it updates) but if I update the app (either via clicking the button "update extensions now" or via ...
0
votes
1answer
47 views

Why is my packaged chrome extension not updating?

UPDATE: Solved one part, but not other I have the CRX updating now (it was not rebuilding). However, Chrome will not accept the XML or CRX at an https URL. I believe #2 is because it's a ...
1
vote
1answer
55 views

installing crx-less web apps

To install CRX-less Web Apps a manifest.json file is required. Then the function chrome.app.install() has to be called. Logically the app should install, but it doesn´t. Chrome informs me then about a ...
0
votes
1answer
91 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
52 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
2answers
81 views

google cloud messaging for chrome api terms of service

When I tried to turn on gcm for chrome service in my google APIs console, I see this in terms & conditions, Google Cloud Messaging for Chrome API Terms of Service Last modified: September 1, ...
0
votes
1answer
73 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
132 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
0answers
48 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 ...
2
votes
1answer
162 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
1answer
34 views

Internationalization with multiple subdomains

I am releasing multiple languages for my app in Chrome App Store. I am trying to release my app so that it links Chrome App Story language version to our subdomains as per language. Example: //in ...
3
votes
1answer
144 views

Keyboard keys not working in chrome.app when in full-screen

When switching to full-screen in a Google Chrome Packaged app (using webkitRequestFullScreen), most of the keyboard keys are not working except for the space button, enter, backspace and arrows. Is ...
0
votes
2answers
150 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 ...
0
votes
1answer
73 views

Tabs/Windows in Chrome apps

It appears that chrome apps are unable to render as tabs in the browser... I happen to like the chrome tabbing interface and it would be a shame to have to try and re-implement it in html/css/js. ...
2
votes
2answers
194 views

Window title does not appear in chrome packaged-apps (Windows 7)

I am creating a chrome window with the 'frame' option set to 'chrome' in the CreateWindowOptions argument. Using Linux the window title appears in the frame however when using packaged-apps on ...
1
vote
1answer
338 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 ...
2
votes
1answer
104 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
116 views

Close event for chrome.app.window

When a chrome app window is closed, is it possible to detect the event? and do an action before the window is closed?
3
votes
1answer
135 views

Custom taskbar icon when using chrome.app.window.create

Is it possible to have an icon different then the one specified in the manifest when opening an app window with chrome.app.window.create ? Basically I would like to be able to open multiple windows ...
1
vote
4answers
325 views

Saving data in text file using chrome packaged app/extension

Since Chrome packaged/extensions are only written in HTML5, JavaScript and CSS, I was wondering is there a way to save data in text file without the use of server script language like php? All I need ...
1
vote
1answer
234 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 ...
1
vote
2answers
144 views

Drag 'n' Drop files to a Chrome Package App?

Has anyone successfully implemented drag and drop with files from desktop to the app? I've tried just putting this drag 'n' drop example into the index file but I just get this error: Can't open ...
1
vote
1answer
99 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 ...
2
votes
1answer
142 views

Does “access your data on all websites” apply to only the app tab/window, or browser-wide?

Many Chrome Web Store apps request this - does it mean the app can access data in all tabs and windows opened in your browser?
0
votes
2answers
248 views

Chrome UDP socket server sendTo other hosts than localhost returns -109 error code

I'm using the chrome network API to open an UDP socket that should both listen and send data (server and client). That's why i'm using the server way with bind/sendTo/recvFrom. However, I am not able ...
0
votes
1answer
118 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
168 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
2answers
149 views

How to prevent resizing a Chrome Packaged App?

I've just jumped into developing apps for chrome, and just started with the "Hello World" example. My first thing I wanted to change is to prevent resizing of the window, I've searched and got ...
2
votes
2answers
151 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
1answer
93 views

Scroll bar in Hosted Apps

I'm working on a packaged app for Chrome. It's launch page would access data from localStorage and output as HTML. But my problem is that the app launches in a separate window (shell/panel) with no ...
1
vote
1answer
296 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
51 views

Definition of resultCodes when using chrome.socket module

The chrome.socket.read callback will return a ReadInfo object which includes a resultCode property. This either contains the number of bytes read or a negative integer indicating an error. I have ...
0
votes
1answer
138 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 ...
3
votes
1answer
324 views

Getting event when new data can be read - chrome.socket.read API

Trying to use TCP sockets using chrome.socket API on Chrome Version 25.0.1364.5 dev. Looking at the documentation for the chrome.socket.read there doesn't seem to be a way to get a notification when ...
1
vote
1answer
149 views

GUI in Chrome Packaged app

I am new to Chrome packaged apps and GUI. What type of Gui can I use in Chrome Packaged apps? Can I use Tkinter in Python? or should I use Javascript GUI? If yes then which one you think is the best ...

1 2