diff --git a/plugins/angular.json b/plugins/angular.json index 4f6f8b0c1c..96a24ab336 100644 --- a/plugins/angular.json +++ b/plugins/angular.json @@ -88,6 +88,7 @@ "assets": [ "apps/icons-plugin/src/_headers", "apps/icons-plugin/src/favicon.ico", + "apps/icons-plugin/src/manifest.json", "apps/icons-plugin/src/assets" ], "styles": [ diff --git a/plugins/apps/icons-plugin/src/index.html b/plugins/apps/icons-plugin/src/index.html index e8daa2b945..8030753f16 100644 --- a/plugins/apps/icons-plugin/src/index.html +++ b/plugins/apps/icons-plugin/src/index.html @@ -3,7 +3,6 @@ icons-plugin - diff --git a/plugins/apps/icons-plugin/src/manifest.json b/plugins/apps/icons-plugin/src/manifest.json new file mode 100644 index 0000000000..7d46a3ccbc --- /dev/null +++ b/plugins/apps/icons-plugin/src/manifest.json @@ -0,0 +1,8 @@ +{ + "name": "Icons plugin", + "version": 2, + "code": "assets/plugin.js", + "icon": "assets/icon.png", + "description": "Create icons from the Feather Icons set", + "permissions": ["content:read", "content:write"] +}