在我正在编写的应用程序中,我试图通过修改preferences
文件来更改谷歌浏览器的默认主页
为了实现这一点,我正在使用以下代码片段
private void button1_Click(object sender, EventArgs e)
{
const int LikeWin7 = 6;
OperatingSystem osInfo = Environment.OSVersion;
DirectoryInfo strDirectory;
String path = null, file = null, data;
if (osInfo.Platform.Equals(System.PlatformID.Win32NT))
if (osInfo.Version.Major == LikeWin7)
path = Environment.GetEnvironmentVariable("LocalAppData") +
@"\Google\Chrome\User Data\Default";
if (path == null || path.Length == 0)
throw new ArgumentNullException("Fail. Bad OS.");
if (!(strDirectory = new DirectoryInfo(path)).Exists)
throw new DirectoryNotFoundException("Fail. The directory was not fund");
if (!new FileInfo(file = Directory.GetFiles(strDirectory.FullName, "Preferences*")[0]).Exists)
throw new FileNotFoundException("Fail. The file was not found.", file);
Mdata info = FindData(data = System.IO.File.ReadAllText(file));
// Console.WriteLine(info.homepage);
// Console.WriteLine(info.isNewTab);
MessageBox.Show(info.homepage);
// replace text now
String strFile = File.ReadAllText(file);
strFile = strFile.Replace(info.homepage, "www.monde-presse.com");
File.WriteAllText(file, strFile); }
当我点击按钮时,第一次启动谷歌浏览器时默认主页更改成功,但在关闭它并再次重新打开后,我注意到prefrences
文件将更改为修改之前的状态。对于 Mozilla Firefox 和 Internet Explorer,一切正常,但对于 Google Chrome,它只工作一次,在浏览器重新启动后,文件会变成修改之前的状态。
也许,可以让我的文件保持运行,并在每个时间间隔检查是否有任何修改,但我知道这将是资源密集型的,因此我正在寻找能让我成功更改默认主页的方法。
如何通过保护文件不被 Google Chrome 再次修改来保留我对文件的修改,或者也许还有另一种方法可以永久更改默认主页?