From 6a12a29e1224939aa115a14715a4415e14b0b389 Mon Sep 17 00:00:00 2001 From: André Oliveira <37463445+SpecialAro@users.noreply.github.com> Date: Thu, 19 Jan 2023 22:50:09 +0000 Subject: feat: add several recipes (#293) --- recipes/keepervault/icon.svg | 15 +++++++++++++++ recipes/keepervault/index.js | 1 + recipes/keepervault/package.json | 9 +++++++++ recipes/keepervault/webview.js | 9 +++++++++ 4 files changed, 34 insertions(+) create mode 100644 recipes/keepervault/icon.svg create mode 100644 recipes/keepervault/index.js create mode 100644 recipes/keepervault/package.json create mode 100644 recipes/keepervault/webview.js (limited to 'recipes/keepervault') diff --git a/recipes/keepervault/icon.svg b/recipes/keepervault/icon.svg new file mode 100644 index 0000000..b448727 --- /dev/null +++ b/recipes/keepervault/icon.svg @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/recipes/keepervault/index.js b/recipes/keepervault/index.js new file mode 100644 index 0000000..5545daa --- /dev/null +++ b/recipes/keepervault/index.js @@ -0,0 +1 @@ +module.exports = Ferdium => class KeeperVault extends Ferdium {}; diff --git a/recipes/keepervault/package.json b/recipes/keepervault/package.json new file mode 100644 index 0000000..e13d331 --- /dev/null +++ b/recipes/keepervault/package.json @@ -0,0 +1,9 @@ +{ + "id": "keepervault", + "name": "Keeper Vault", + "version": "1.0.0", + "license": "MIT", + "config": { + "serviceURL": "https://keepersecurity.eu/vault/#" + } +} diff --git a/recipes/keepervault/webview.js b/recipes/keepervault/webview.js new file mode 100644 index 0000000..56a20b6 --- /dev/null +++ b/recipes/keepervault/webview.js @@ -0,0 +1,9 @@ +const _path = _interopRequireDefault(require('path')); + +function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; +} + +module.exports = Ferdium => { + Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); +}; -- cgit v1.2.3-54-g00ecf