How can I start Google Chrome on OS X with the --allow-files-access-from-files argument?

I'm running Google Chrome (12.0.742.122) on OS X (Snow Leopard) and I need to pass the "--allow-files-access-from-files" option so that I can test some local javascript stuff I'm working on.

I've tried using the following command-line approaches:

/Applications/Google\ Chrome --allow-files-access-from-files
open /Applications/Google\ Chrome -n --args --allow-files-access-from-files

Both will launch Google Chrome but it doesn't seem to take the argument as I am still not able to test my local Javascript.

Any suggestions?

1 Answer

open -a "Google Chrome" --args --allow-file-access-from-files

I don't know how to adequately test the --allow-file-access-from-files switch, but it works for --incognito for me (same version and OS).

It appears as though Chrome does not like to be opened twice; when passing the -n switch to open (which is supposed to open a new instance), it immediately kills itself.

EDIT: 'allow-files-access-from-files' should be 'allow-file-access-from-files'

5

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like