diff --git a/Plugins/HelloWorldCSharp/plugin.json b/Plugins/HelloWorldCSharp/plugin.json index c50928684e..b7edbd6a9a 100644 --- a/Plugins/HelloWorldCSharp/plugin.json +++ b/Plugins/HelloWorldCSharp/plugin.json @@ -8,5 +8,6 @@ "Language":"csharp", "Website":"https://github.com/Wox-launcher/Wox", "ExecuteFileName":"HelloWorldCSharp.dll", - "IcoPath":"app.png" + "IcoPath":"app.png", + "Disabled": true } \ No newline at end of file diff --git a/Plugins/Wox.Plugin.Everything/plugin.json b/Plugins/Wox.Plugin.Everything/plugin.json index d7970352c0..c19d9a80ff 100644 --- a/Plugins/Wox.Plugin.Everything/plugin.json +++ b/Plugins/Wox.Plugin.Everything/plugin.json @@ -8,5 +8,6 @@ "Language":"csharp", "Website":"http://www.wox.one", "IcoPath":"Images\\find.png", - "ExecuteFileName":"Wox.Plugin.Everything.dll" + "ExecuteFileName":"Wox.Plugin.Everything.dll", + "Disabled": true } diff --git a/Wox.Infrastructure/UserSettings/PluginSettings.cs b/Wox.Infrastructure/UserSettings/PluginSettings.cs index c80ee7e722..c47fe7c156 100644 --- a/Wox.Infrastructure/UserSettings/PluginSettings.cs +++ b/Wox.Infrastructure/UserSettings/PluginSettings.cs @@ -29,7 +29,7 @@ namespace Wox.Infrastructure.UserSettings ID = metadata.ID, Name = metadata.Name, ActionKeywords = metadata.ActionKeywords, - Disabled = false + Disabled = metadata.Disabled }; } }