mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 19:19:23 +08:00
42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
|
|
namespace Wox.Plugin.SystemPlugins
|
|
{
|
|
public class UrlPlugin : BaseSystemPlugin
|
|
{
|
|
protected override List<Result> QueryInternal(Query query)
|
|
{
|
|
var raw = query.RawQuery;
|
|
Uri uri;
|
|
if (Uri.TryCreate(raw, UriKind.Absolute, out uri))
|
|
{
|
|
return new List<Result>
|
|
{
|
|
new Result
|
|
{
|
|
Title = raw,
|
|
SubTitle = "Open the typed URL...",
|
|
IcoPath = "Images/url1.png",
|
|
Score = 8,
|
|
Action = _ =>
|
|
{
|
|
Process.Start(raw);
|
|
return true;
|
|
}
|
|
}
|
|
};
|
|
}
|
|
return new List<Result>(0);
|
|
}
|
|
|
|
public override string Name { get { return "URL handler"; } }
|
|
public override string Description { get { return "Provide Opening the typed URL from Wox."; } }
|
|
public override string IcoPath { get { return "Images/url2.png"; } }
|
|
|
|
protected override void InitInternal(PluginInitContext context)
|
|
{
|
|
}
|
|
}
|
|
} |