Archive

Posts Tagged ‘chrome’

Changing Google’s Black Bar

June 29th, 2011 Adam No comments


Everybody has seen it. I’m sure Google will give us some options in the future to change it’s appearance, but for now it’s just there. It doesn’t necessarily look bad, it just might not fit with your browser’s overall theme. Well you don’t have to tolerate it. There is an addon called Stylish (Chrome, Firefox) that allows users to inject custom CSS to specific pages. So we’re going to do just that.

After you’ve installed the addon, go to the options and add a new style:

/* main bar background */
#gbx4{
  background-color: #f6f6f6!important;
  border-bottom: 1px solid #b6bac0!important;
}
 
/* main bar text */
.gbts{
  color: #777!important;
}
 
/* current tab */
.gbp1 .gbts{
  color: #333!important;
  background-color: #ddd!important;
}
 
/* current tab highlight */
.gbp1 .gbtb2 {
  border-top-color: #5893d6!important;
}
 
/* tab hover */
.gbzt-hvr span, .gbt .gbgt-hvr span{
  color: #fff!important;
  background-color: #888!important;
}

Note: We add !important to each parameter because some of google’s existing code will overwrite ours without it.

Firefox

Chrome




After implementing the above code, you should see this anywhere on the google.com domain:

Obviously, you can change these colors to whatever you like. The above style matches my current Chrome theme.

Categories: misc Tags: , , , , , ,

Gray CRX Theme for Google Chrome Dev

August 4th, 2009 Adam 1 comment

I just switched to the latest dev build of Google Chrome, and it supports multiple themes, in an easy-to-install .crx format. So I thought I’d go ahead and make my gray theme (since I can’t stand the default bright blue). Another benefit is finally being able to skin the bookmark bar.

If you want to switch to dev build from stable OR beta, just grab the chrome changer file and switch to dev, then close and restart Chrome. Then click the wrench then click About Google Chrome. Then get the latest version. You can now install crx themes.

Here’s the theme file:
Simply Gray

Categories: misc Tags: , , , , , , , ,

Gray Google Chrome Theme

July 9th, 2009 Adam No comments



(Edit 8/4/2009: For the dev build version of the theme, get my updated version)

This is random, but I just got the latest stable version of Chrome, and all the skins that are floating around the internet do not seem to work with the latest version. So I made a new one. It just replaces that bright blue with gray. For some reason, that blue top has always bothered me. Anyway, here’s what it looks like:

chrome-thumb

Here’s the file:
default.dll

To change the theme for Google Chrome you will need to replace the default.dll file with the new theme file. Location for theme folder are as follows:

For Vista Users:
C:\Users\UserName\AppData\Local\Google\Chrome\Application\0.2.172.33\Themes\

For XP Users:
C:\Documents and Settings\UserName\Local Settings\Application Data\Google\Chrome\Application\0.2.172.33\Themes\

Replace the number with your version of Google Chrome.

Make sure to keep a backup of the default.dll, before you overwrite it with a new one.

Categories: misc Tags: , , , , , , ,