Google Chrome Developer Update - Geolocation and Incognito Extensions
Friday, March 26, 2010
Labels: extensions, googlechrome
What's New in Google Chrome?
The Google Chrome Dev channel has been updated to 5.0.356.2 for all platforms since our last developer post. It includes a few new goodies for developers:
- Geolocation API: Run with the --enable-geolocation flag.
- Incognito extensions
- Unpacked extensions are now remembered across browser restarts.
- Favicons for extension pages (define with a 16x16 image in your manifest.json).
- setPopup() was added to browserAction and pageAction for dynamically changing which popup to show based on the selected tab.
Please keep in mind that these features are still under development and are not 100% stable yet. In addition to the above, there are a few new experimental features baking in /trunk. You can try them out with the --enable-experimental-extension-apis flag:
Samples and Tutorials
We’ve added a few new sample extensions tutorials to get you started:
Remember to follow us on Twitter: @ChromiumDev!

8 comments:
Vincèn said...
How to activate that flag: --enable-geolocation when you use Chrome on Mac ?
Thanks
Vincèn
March 27, 2010 2:36 AM
1singur said...
Vincèn, have you tried a search with google, friend?
March 27, 2010 1:16 PM
Vincèn said...
I only found some complex way on Internet implying use of scripts :( I suppose there is an easier way for flag with Chrome for mac ;)
March 27, 2010 1:28 PM
ericbidelman said...
Vincen, I ended up creating a .sh script to start Chromium with a few flags:
#!/bin/sh
/Applications/Chromium.app/Contents/MacOS/Chromium --enable-experimental-extension-apis --enable-geolocation
Save that as launch_chromium.sh, make the file executable (chmod +x launch_chromium.sh), and change .sh files to open in Terminal. You'll be in business.
March 27, 2010 2:33 PM
Vincèn said...
Thanks Eric for info :) just not so nice solution for Mac :(
April 1, 2010 12:22 AM
Daniel D. Shaw said...
Here's what I run from the command line:
open /Applications/Chromium.app --args '--enable-geolocation'
April 1, 2010 8:44 AM
Brett B said...
I very much dislike suppressing the http:// bit. It makes cutting and pasting more cumbersome. It says it's hid "by default" though. Is there a way to change that default?
April 14, 2010 1:46 PM
brthomas said...
After an Incognito browsing session will Chrome delete the new kind of Flash-cookies (Local Shared Objects, LSO)? If not, are there plans to add this feature into a future version of your software? I understand that these Flash-cookies are much more of a significant threat than the old style of computer cookie.
May 6, 2010 1:27 PM
Post a Comment