Skip to content

Commit

Permalink
Merge pull request #19 from hankyusa/patch-1
Browse files Browse the repository at this point in the history
Add support for Arc browser (#15)
  • Loading branch information
TBM13 authored May 9, 2024
2 parents 2b25907 + 5bbb765 commit c46187f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions BrowserSearch/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ private void InitDefaultBrowser()

switch (BrowserInfo.Name)
{
case "Arc":
_defaultBrowser = new Chromium(
Path.Join(localappdata, @"Packages\TheBrowserCompany.Arc_ttt1ap7aakyb4\LocalCache\Local\Arc\User Data"), _selectedProfileName);
break;
case "Brave":
_defaultBrowser = new Chromium(
Path.Join(localappdata, @"BraveSoftware\Brave-Browser\User Data"), _selectedProfileName);
Expand Down

0 comments on commit c46187f

Please sign in to comment.