Add everything plugin context menu and add settings in Url plugin (#2299)

1. Add useful context menu items in everything
2. Add settings in Url plugin, can set browser path

* let url plugin support multi Languages
This commit is contained in:
magicdmer
2018-12-25 15:11:24 +08:00
committed by jhdxr
parent 0baf7744bc
commit a6e82475a3
11 changed files with 200 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Wox.Plugin.Url
{
public class Settings
{
public string BrowserPath { get; set; }
}
}