Skip to content

Commit 0db42da

Browse files
committed
Release 1.8.0
1 parent 8236713 commit 0db42da

File tree

3 files changed

+93
-91
lines changed

3 files changed

+93
-91
lines changed

BrowserSearch/BrowserSearch.csproj

+41-41
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFramework>net8.0-windows</TargetFramework>
5-
<Nullable>enable</Nullable>
6-
<UseWPF>true</UseWPF>
7-
<AssemblyName>Community.PowerToys.Run.Plugin.$(MSBuildProjectName)</AssemblyName>
8-
<Platforms>AnyCPU;x64;ARM64</Platforms>
9-
<Version>1.7.0</Version>
10-
</PropertyGroup>
11-
12-
<!-- These libraries can be copied from any installation of PowerToys -->
13-
<!-- They are located at <PowerToys Path>\modules\launcher -->
14-
<ItemGroup>
15-
<Reference Include="Wox.Plugin">
16-
<HintPath>libs\Wox.Plugin.dll</HintPath>
17-
</Reference>
18-
<Reference Include="Wox.Infrastructure">
19-
<HintPath>libs\Wox.Infrastructure.dll</HintPath>
20-
</Reference>
21-
<Reference Include="Microsoft.Data.Sqlite">
22-
<HintPath>libs\Microsoft.Data.Sqlite.dll</HintPath>
23-
</Reference>
24-
<Reference Include="PowerToys.Settings.UI.Lib">
25-
<HintPath>libs\PowerToys.Settings.UI.Lib.dll</HintPath>
26-
</Reference>
27-
</ItemGroup>
28-
29-
<ItemGroup>
30-
<None Update="Images\BrowserSearch.dark.png">
31-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
32-
</None>
33-
<None Update="Images\BrowserSearch.light.png">
34-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
35-
</None>
36-
<None Update="plugin.json">
37-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
38-
</None>
39-
</ItemGroup>
40-
41-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0-windows</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<UseWPF>true</UseWPF>
7+
<AssemblyName>Community.PowerToys.Run.Plugin.$(MSBuildProjectName)</AssemblyName>
8+
<Platforms>AnyCPU;x64;ARM64</Platforms>
9+
<Version>1.8.0</Version>
10+
</PropertyGroup>
11+
12+
<!-- These libraries can be copied from any installation of PowerToys -->
13+
<!-- They are located at <PowerToys Path>\modules\launcher -->
14+
<ItemGroup>
15+
<Reference Include="Wox.Plugin">
16+
<HintPath>libs\Wox.Plugin.dll</HintPath>
17+
</Reference>
18+
<Reference Include="Wox.Infrastructure">
19+
<HintPath>libs\Wox.Infrastructure.dll</HintPath>
20+
</Reference>
21+
<Reference Include="Microsoft.Data.Sqlite">
22+
<HintPath>libs\Microsoft.Data.Sqlite.dll</HintPath>
23+
</Reference>
24+
<Reference Include="PowerToys.Settings.UI.Lib">
25+
<HintPath>libs\PowerToys.Settings.UI.Lib.dll</HintPath>
26+
</Reference>
27+
</ItemGroup>
28+
29+
<ItemGroup>
30+
<None Update="Images\BrowserSearch.dark.png">
31+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
32+
</None>
33+
<None Update="Images\BrowserSearch.light.png">
34+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
35+
</None>
36+
<None Update="plugin.json">
37+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
38+
</None>
39+
</ItemGroup>
40+
41+
</Project>

BrowserSearch/plugin.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
{
2-
"ID": "E5A9FC7A3F7F4320BE612DA95C57C32D",
3-
"ActionKeyword": "b?",
4-
"IsGlobal": true,
5-
"Name": "Browser Search",
6-
"Author": "TBM13",
7-
"Version": "1.7.0",
8-
"Language": "csharp",
9-
"Website": "https://github.com/TBM13/BrowserSearch",
10-
"ExecuteFileName": "Community.PowerToys.Run.Plugin.BrowserSearch.dll",
11-
"IcoPathDark": "Images\\BrowserSearch.dark.png",
12-
"IcoPathLight": "Images\\BrowserSearch.light.png"
1+
{
2+
"ID": "E5A9FC7A3F7F4320BE612DA95C57C32D",
3+
"ActionKeyword": "b?",
4+
"IsGlobal": true,
5+
"Name": "Browser Search",
6+
"Author": "TBM13",
7+
"Version": "1.8.0",
8+
"Language": "csharp",
9+
"Website": "https://github.com/TBM13/BrowserSearch",
10+
"ExecuteFileName": "Community.PowerToys.Run.Plugin.BrowserSearch.dll",
11+
"IcoPathDark": "Images\\BrowserSearch.dark.png",
12+
"IcoPathLight": "Images\\BrowserSearch.light.png"
1313
}

README.md

+40-38
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,40 @@
1-
# BrowserSearch
2-
This is a plugin for PowerToys Run.
3-
It reads your default browser's history, allowing you to search its entries and open their URL.
4-
5-
<p align="center">
6-
<img src="./Screenshots/1.png" width="500"/>
7-
</p>
8-
9-
## Supported browsers
10-
* Arc
11-
* Brave
12-
* Firefox
13-
* Google Chrome
14-
* Microsoft Edge (Chromium version)
15-
* Thorium
16-
* Vivaldi Browser
17-
* Wavebox
18-
19-
Support for any other browser based on Chromium or Firefox can be added easily. If yours is not listed here, open an issue.
20-
21-
## Install instructions
22-
* Exit PowerToys
23-
* Download latest version from [releases](https://github.com/TBM13/BrowserSearch/releases)
24-
* Extract zip
25-
* Move extracted folder `BrowserSearch` to `%LOCALAPPDATA%\Microsoft\PowerToys\PowerToys Run\Plugins\`
26-
* Start PowerToys
27-
28-
## Build instructions
29-
* Clone this repo
30-
* Inside the `BrowserSearch` folder, create another one called `libs`
31-
* Copy the following files from `%ProgramFiles%\PowerToys\` to `libs`
32-
* Wox.Plugin.dll
33-
* Wox.Infrastructure.dll
34-
* Microsoft.Data.Sqlite.dll
35-
* PowerToys.Settings.UI.Lib.dll
36-
* Open the project in Visual Studio and build it in release mode
37-
* Copy the output folder `net8.0-windows` to `%LOCALAPPDATA%\Microsoft\PowerToys\PowerToys Run\Plugins\`
38-
* (Optional) Rename the copied folder to BrowserSearch
1+
# BrowserSearch
2+
This is a plugin for PowerToys Run.
3+
It reads your default browser's history, allowing you to search its entries and open their URL.
4+
5+
<p align="center">
6+
<img src="./Screenshots/1.png" width="500"/>
7+
</p>
8+
9+
## Supported browsers
10+
* Arc
11+
* Brave
12+
* Firefox
13+
* Google Chrome
14+
* Microsoft Edge (Chromium version)
15+
* Opera GX (profile selection not supported)
16+
* Thorium
17+
* Vivaldi Browser
18+
* Waterfox
19+
* Wavebox
20+
21+
Support for any other browser based on Chromium or Firefox can be added easily. If yours is not listed here, open an issue.
22+
23+
## Install instructions
24+
* Exit PowerToys
25+
* Download latest version from [releases](https://github.com/TBM13/BrowserSearch/releases)
26+
* Extract zip
27+
* Move extracted folder `BrowserSearch` to `%LOCALAPPDATA%\Microsoft\PowerToys\PowerToys Run\Plugins\`
28+
* Start PowerToys
29+
30+
## Build instructions
31+
* Clone this repo
32+
* Inside the `BrowserSearch` folder, create another one called `libs`
33+
* Copy the following files from `%ProgramFiles%\PowerToys\` to `libs`
34+
* Wox.Plugin.dll
35+
* Wox.Infrastructure.dll
36+
* Microsoft.Data.Sqlite.dll
37+
* PowerToys.Settings.UI.Lib.dll
38+
* Open the project in Visual Studio and build it in release mode
39+
* Copy the output folder `net8.0-windows` to `%LOCALAPPDATA%\Microsoft\PowerToys\PowerToys Run\Plugins\`
40+
* (Optional) Rename the copied folder to BrowserSearch

0 commit comments

Comments
 (0)