
Google Chrome Forums!
Wow, it looks like people are really trying to jump on the Google Chrome wagon lately as I have noticed 4-5 different Google Chrome Forums popping up in the last couple days.
So, here’s a list of all the Google Chrome Forums that have been created so far and some interesting posts there
GoogleChromeBoard.com – Cool Chrome Theme Downloads
Chrome-Forum.net – 6 NEW Chrome Theme Downloads
ChromeBoard.com – More Google Chrome Tips and Hacks
ChromeSpot.com – More tips and tricks
I might have missed a couple but there’s enough information on this page to keep you busy for next couple hours.
Happy Chrome-ing!
Tags:chrome tips, couple days, couple hours, google, Google Chrome Hacks, hacks, ing, tips and tricks
(Making a new bookmarklet for Youtube FLV download on Google Chrome Browser)
Well, here’s another cool hack that all you YouTubers might enjoy as you can download the actual YouTube videos with a little effort. This hack probably works for Firefox and other browsers too because it’s a simple Javascript bookmarklet.
Here’s how to do it, copy the following code and make a bookmarklet, you should see “Download FLV” as shown below:
javascript:window.location.href = 'http://youtube.com/get_video?video_id=' + swfArgs['video_id']+ "&l=" + swfArgs['l'] + "&sk=" + swfArgs['sk'] + '&fmt_map' + swfArgs['fmt_map'] + '&t=' + swfArgs['t'];
At the bottom of above Chrome browser window, you will see that the video is being downloaded after I press on the bookmarklet.
Here’s the code for downloading high-resolution MP4:
javascript:window.location.href = 'http://youtube.com/get_video?video_id=' + swfArgs['video_id']+ "&fmt=18" + "&l=" + swfArgs['l'] + "&sk=" + swfArgs['sk'] + '&fmt_map' + swfArgs['fmt_map'] + '&t=' + swfArgs['t'];
via googlechromeboard
Tags:amp, bookmarklet, cool hack, firefox, flv download, fmt, google, Google Chrome Hacks, high resolution, map, sk, video id, youtube videos
Remember the Google Chrome Automatic Theme Switcher? Well, here’s a supposedly better version of it. Please go knock yourself out and install as many themes as you want now.
XChrome Beta Release 5
What is XChrome?
XChrome is a theme manager for Googles Chrome browser, it allows users to install a skin in seconds without having to move default.dll around and it allows you to view the author and various other details before installing.
XChrome also allows users who do not have XChrome install to install themes by double clicking the themes .exe file, they are prompted to install the theme, they agree the theme is copied to Chromes Default.dll
via chromespot
Tags:beta release, beta version, chrome themes download, chrome themes manager, chrome themes switcher, dll, google, Google Chrome Hacks, google chrome themes, theme manager
It looks like there’s a free Google Chrome Themes Download site over here. (I think it’s overloaded, they might need to get a new server first)
Download the theme and install it here:
H:\Documents and Settings\max\Local Settings\Application Data\Google\Chrome\Application\0.2.149.27\Themes
Where max is your username.
Tags:application data, chrome themes downloads, documents and settings, download chrome themes, google, Google Chrome Hacks, google chrome themes

Chrome Tips - Chrome Theme Switcher!
It looks like there’s now a way to switch Chrome themes (although I like the default theme) using a custom Chrome Theme Switcher:
Download Link:
(Last updated at 23:38 GMT) Version 2.1
http://www.elitehudson.com/download.php?file=782885397-ReleaseV2.1.zipplease note that you Actually have to click the download now button if you press return in the code box it gives an “invalid download link” error.
I’ve included the currently release themes that I could find. I did not make these themes and do not claim any part of creating them, I only build this application to save people time
![]()
Theme Makers, feel free to distribute this program with your themes.
via chromespot
Tags:chrome theme download, chrome theme switcher, chrome themes, chrome tips, custom chrome, default theme, Google Chrome Hacks, link error
Of course, there’s plethora of proxy sites and programs you can use but here’s a good one for blocking ads in case you don’t have them.
A solution to this for now is http://www.privoxy.org/
1.) Install Privoxy
2) Click on the Wrench icon in Chrome in the upper right corner
3.) Choose options>Under The Hood>Change proxy settings
4.) A windows box pops up, choose LAN settings (at least this is what it’s called in Vista)
5.) Check off “Proxy settings” and in the address setting add127.0.0.1 and in the port 8118
6.) If you have the option, you can also check off “Bypass proxy for local settings”
7.) Click “Ok”, close chrome and restart it.Tada. Enjoy.
via geekzone
Tags:bypass proxy, Google Chrome Hacks, google chrome proxy, hack, lan settings, local settings, plethora, privoxy, proxy settings, proxy sites, upper right corner, windows box
For those of you who are web site designers/programmers, you need to realize first-hand that the Google Chrome is based on WebKit and therefore, it’s very similar to Safari, which is also built on the WebKit.
To get started, here’s a CSS hack I found for the Google Chrome that might help you get started.
Non-compliant selectors can be used and a valid way to target individual browsers. Chrome supports every selector, just like Safari 3.1. My recommendation is to use the body:first-of-type hack, the CSS hack/filter for Safari as a filter for Safari 3+ and Chrome. There should be no reason to target Chrome with the exclusion of Safari 3.1, but if you want to target both, filtering out Safari 3.0, I would try using:
via evotech
Tags:333333, css hacks, google, Google Chrome Hacks, hack, programmers, safari, selectors, web site designers, webkit
Here’s a fun hack that will force your Google Chrome to dance for you, copy and paste the following code in your address bar:
javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.images; DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=Math.sin(R*x1+i*x2+x3)*x4+x5; DIS.top=Math.cos(R*y1+i*y2+y3)*y4+y5}R++}setInterval('A()',5); void(0);
via retrogismo
Tags:document images, google, Google Chrome Hacks, hack, length function, math, x4, x5, y1, y2

Getting Started with Chrome Development!
After pondering about where the Google Chrome download is and finding a version of it, I have finally found the Chrome Developer page, where you can get started with Chrome application development. (Thanks to post by Peteris!)
Here’s also a cool breakdown of relative path and what they do by Peteris:
| Library | Relative Path | Description |
|---|---|---|
| Google Breakpad | /src/breakpad | An open-source multi-platform crash reporting system. |
| Google URL | /src/googleurl | A small library for parsing and canonicalizing URLs. |
| Skia | /src/skia | Vector graphics engine. |
| Google v8 | /src/v8 | Google’s open source JavaScript engine. V8 implements ECMAScript as specified in ECMA-262, 3rd edition, and runs on Windows XP and Vista, Mac OS X 10.5 (Leopard), and Linux systems that use IA-32 or ARM processors. V8 can run standalone, or can be embedded into any C++ application. |
| Webkit | /src/webki | Open source web browser engine. |
| Netscape Portable Runtime (NSPR) | /src/base/third_party/nspr | Netscape Portable Runtime (NSPR) provides a platform-neutral API for system level and libc like functions. |
| Network Security Services (NSS) | /src/base/third_party/nss | Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications. Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards. |
| Hunspell | /src/chrome/third_ party/hunspell |
Spell checker and morphological analyzer library and program designed for languages with rich morphology and complex word compounding or character encoding. |
| Windows Template Library | /src/chrome/third_party/wtl | C++ library for developing Windows applications and UI components. It extends ATL (Active Template Library) and provides a set of classes for controls, dialogs, frame windows, GDI objects, and more. |
| Google C++ Testing Framework | /src/testing/gtest | Google’s framework for writing C++ tests on a variety of platforms (Linux, Mac OS X, Windows, Windows CE, and Symbian). Based on the xUnit architecture. Supports automatic test discovery, a rich set of assertions, user-defined assertions, death tests, fatal and non-fatal failures, various options for running the tests, and XML test report generation. |
| bsdiff and bspatch | /src/third_party/bsdiff and /src/third_party/bspatch | bsdiff and bspatch are tools for building and applying patches to binary files. |
| bzip2 | /src/third_party/bzip2 | bzip2 compresses files using the Burrows-Wheeler block sorting text compression algorithm, and Huffman coding. |
| International Components for Unicode (ICU) | /src/third_party/icu38 | ICU is a mature, widely used set of C/C++ and Java libraries providing Unicode and Globalization support for software applications. |
| libjpeg | /src/third_party/libjpeg | Library for handling the JPEG (JFIF) image format. |
| libpng | /src/third_party/libpng | PNG image format library. It supports almost all PNG features, is extensible, and has been extensively tested for over 13 years. |
| libxml | /src/third_party/libxml | XML C parsing library. |
| libxslt | /src/third_party/libxslt | XSLT C library. |
| LZMA | /src/third_party/lzma_sdk | LZMA is the default and general compression method of 7z format in the 7-Zip program. |
| stringencoders | /src/third_party/modp_b64 | A collection of high performance c-string transformations (in this case, base 64 encoding/decoding), frequently 2x faster than standard implementations (if they exist at all). |
| Netscape Plugin Application Programming Interface (NPAPI) | /src/third_party/npapi | Cross-platform plugin architecture used by many web browsers. |
| Pthreads-w32 | /src/third_party/pthread | Application programming interface (API) for writing multithreaded applications |
| SCons – a software construction tool | /src/third_party/scons | Open Source software construction tool—that is, a next-generation build tool. Think of SCons as an improved, cross-platform substitute for the classic Make utility with integrated functionality similar to autoconf/automake and compiler caches such as ccache. |
| sqlite | /src/third_party/sqlite | Software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. |
| TLS Lite | /src/third_party/tlslite | Free Python library that implements SSL 3.0, TLS 1.0, and TLS 1.1. TLS Lite supports non-traditional authentication methods such as SRP, shared keys, and cryptoIDs in addition to X.509 certificates. Note: Python is not a part of Chrome. It’s used for testing various parts of Chrome browser, such as code coverage, dependencies, measures page load times, compares generated html, etc. |
| zlib | /src/third_party/zlib | zlib is designed to be a free, general-purpose, legally unencumbered — that is, not covered by any patents — lossless data-compression library for use on virtually any computer hardware and operating system. |
Resource Links:
Google Chrome Developer Page
Tags:active template library, arm processors, cross platform development, frame windows, google, Google Chrome Hacks, mac os x, morphological analyzer, network security services, open source web, pkcs 11, pkcs 7, relative path, skia, small library, spell checker, ui components, v3 certificates, vector graphics, webkit, windows template library
For the weirdest reason, I have been having hard time finding the shortcuts page for the Google Chrome but here it is:
Google Chrome Keyboard Shortcuts