哪里谷歌浏览器保存我的主页?我的、浏览器、主页

2023-09-03 06:32:42 作者:带我啪啪带我飞

我所在的配置文件文件夹的浏览器,但我无法找到存储我的主页上的任何文件。

I located the Profiles folder for Chrome, but I'm unable to find any file which stores my homepage.

基本上我想改变使用VB.NET我的浏览器主页,但我找不到它的存储位置。我已经检查了注册,并在Profiles文件夹中。

Basically I want to change my Chrome homepage using VB.NET, but I can't find where it is stored. I have already checked the Registry and in the Profiles folder.

任何帮助将是AP preciated。

Any help would be appreciated.

推荐答案

在文档有关的用户数据目录告诉我们,Chrome浏览器存储在以下位置信息,并为特定的用户参数:

A quick glance at the documentation concerning the User Data Directory tells us that Chrome stores information and parameters for specific users in the following locations:

的Windows XP    C:\ Documents和Settings \<用户名> \本地设置\应用数据\谷歌\铬\用户数据\默认

的Windows Vista        C:\用户\<用户名> \应用程序数据\本地\谷歌\铬\用户数据\默认

Windows Vista C:\Users\<username>\AppData\Local\Google\Chrome\User Data\Default

在该文件夹,你会发现一个名为preferences文件。该文件保存在 JSON格式。您可以打开此文件为纯文本,搜索字符串主页,并修改一个或两个的设置。第一个指明了Chrome浏览器使用的主页。第二个指示浏览器是否会自动打开新建选项卡页(真),或者如果它浏览到您指定的网页(假)。

In that folder, you'll find a file named "Preferences". The file is saved in JSON format. You can open this file as plain text, search for the string "homepage", and modify one or both of the settings. The first one indicates what Chrome uses as your homepage. The second indicates whether Chrome automatically opens the "New Tab" page (True), or if it navigates to your specified homepage (False).

例如,在我的preferences的有关两行的文件是这样的:

For example, the relevant two lines in my "Preferences" file look like this:

"homepage": "http://www.google.com/",
"homepage_is_newtabpage": true,