dracoblue.net

Editing Chrome: Basics with JSON-Files

Since some of the chrome user-data is not saved as sqlite3-database, you will have notice also the json-format for files.

JSON is the javascript object notation and since chrome has a very fast javascript engine called V8, why shouldn't use the notation for datastorage, too? :)

We'll have a short information about what files are in the user-data directory, which are encoded as json-files.

Preferences:

{
"default_search_provider": {
"id": "2",
"name": "Google",
"search_url": "{google:baseURL}search?{google:RLZ}{google:acceptedSuggestion}{google:originalQueryForSuggestion}sourceid=chrome&ie={inputEncoding}&q={searchTerms}",
"suggest_url": "{google:baseSuggestURL}search?client=chrome&output=chrome&hl={language}&q={searchTerms}"
},
"download": {
"extensions_to_open": ""
},
"geoid_at_install": 94,
"profile": {
"exited_cleanly": true,
"id": "not-signed-in",
"name": "",
"nickname": ""
},
"search": {
"suggest_enabled": false
},
"session": {
"urls_to_restore_on_startup": [Â?  ]
}
}

Bookmarks: Contains all bookmarks in an object with all folders and it's

children-array.

{
"date_added": "12865081791713103",
"name": "DracoBlue",
"type": "url",
"url": "http://dracoblue.net/"
}

We'll go in details about theme-ing and extending chrome in next days.

In articles, google chrome, windows by DracoBlue @ 05 Sep 2008 | 157 Words

Editing Chrome: Basics with Database

After you installed Google Chrome or downloaded latest version of chromium, you will notice a

user data directory for chrome.

Most of this files, contain information in the sqlite3-database format. Using the free sqlite database browser, you can easily access/modify/delete data in that files.

I'll give you know a short information about what some of these files contain and where you should start, if you want to edit them by hand.

Cookies: Contains every information available about cookies. If you really need to get in touch with them, check the file on your own.

Web Data-> keywords: All information about the search engines, auto suggest features and the categories for the search engines are configured here.

History->downloads: What files have been downloaded and when started the download.

History->urls: How often did you visited a page (vistcount), how often did you typed the uri on your own (typedcount), what was it's lastest title, is the url hidden?, when did you visited the page the last time.

History-visits: [em]Each [/em]visit for a page (url). Contains for example: Time (visittime) and previous page (fromvisit).

Some of the files are not encoded with sqlite3-format. An other format is the JSONoation, so we'll continue with the json-user-data-files of Chrome in the next article.

In articles, google chrome, windows by DracoBlue @ 05 Sep 2008 | 212 Words

Chromium: Downloading latest Version of Google Chrome

It's possible to download always (even though not always recommended) version of Chromium from the automaticly build sites by the chromium project.

Head over to the official build directory and pick the latest folder.

Download the chrome-win32.zip and unzip it to for example (replace dracoblue with your loginname): [em]C:\Users[/em]dracoblue[em]\AppData\Local\Chromium\Application[/em]

Launch chrome.exe, now you are running the latest version!

You will not see your bookmarks from the chrome installation, for more information check the differences of google chrome user data directories.

In articles, google chrome, windows by DracoBlue @ 05 Sep 2008 | 82 Words

Chromium vs. Google Chrome: Different UserData Directory

When using Chromium (the snapshots of google chrome) and Google Chrome, there are different default directories for the personal data (like bookmarks, recent searches and so on).

Chromium (replace dracoblue, with your login): UserData:[em] C:\Users[/em]dracoblue[em]\AppData\Local\Chromium\User Data[/em]

Google Chrome (replace dracoblue, with your login): UserData: [em]C:\Users[/em]dracoblue[em]\AppData\Local\Google\Chrome\User Data[/em] Chrome.exe: [em]C:\Users[/em]dracoblue[em]\AppData\Local\Google\Chrome\Application[/em]

This paths are for Windows VISTA, in XP you usually have to [em]C:\Documents and Settings\dracoblue... [/em].[em] [/em]

In articles, google chrome, windows by DracoBlue @ 05 Sep 2008 | 66 Words

WinPicker 0.4 available

Today I released Beta Version 0.4 of my new tool called WinPicker.

WinPicker Logo

WinPicker is some kind of

Windows Implementation of the Exposé from MacOSX.

Currently you are able to minimize/revert windows (rightclick), pick windows (leftclick), close windows (shift+rightklick), pick and minimize all other windows (shift+leftclick) and zoom in/out of windows (mousewheel).

In project, winpicker by DracoBlue @ 04 Sep 2008 | 70 Words

Page 32 - Page 33 - Page 34