aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/keepervault
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2023-01-19 22:50:09 +0000
committerLibravatar GitHub <noreply@github.com>2023-01-19 22:50:09 +0000
commit6a12a29e1224939aa115a14715a4415e14b0b389 (patch)
treeac0d61fcde02e061d833a8ce9986417d2a092dab /recipes/keepervault
parentfix: add mastodon hosted option and remove teamId (diff)
downloadferdium-recipes-6a12a29e1224939aa115a14715a4415e14b0b389.tar.gz
ferdium-recipes-6a12a29e1224939aa115a14715a4415e14b0b389.tar.zst
ferdium-recipes-6a12a29e1224939aa115a14715a4415e14b0b389.zip
feat: add several recipes (#293)
Diffstat (limited to 'recipes/keepervault')
-rw-r--r--recipes/keepervault/icon.svg15
-rw-r--r--recipes/keepervault/index.js1
-rw-r--r--recipes/keepervault/package.json9
-rw-r--r--recipes/keepervault/webview.js9
4 files changed, 34 insertions, 0 deletions
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 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Generator: Adobe Illustrator 27.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3<svg version="1.1" id="layer" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4 viewBox="0 0 652 652" style="enable-background:new 0 0 652 652;" xml:space="preserve">
5<style type="text/css">
6 .st0{fill:#FFC700;}
7</style>
8<g>
9 <path class="st0" d="M326,0C148.1,0,3.3,144.8,3.3,326c0,179.3,144.8,326,322.7,326s322.7-146.2,322.7-326
10 C648.3,144.8,503.4,0,326,0z M363.7,48l49.4,13v70.8L469,85.7l41,29.8l-105.3,88.9h-41V48z M120.2,469l-49.4-42.9V235.2l49.4-46.1
11 V469z M217,530l-49.3,44.2V80.6l49.3,44.7V530z M265,41.4h49.4v204h101.9l123.5-100.6l31.2,39.6L434.5,294.8H265V41.4z M469,572.8
12 l-55.9-46.1v70.8l-49.4,13.1V454.1h41L510,543L469,572.8z M541.2,505.3L417.7,404.7h-102v204h-49.4V355.3h169.5l136.5,110.4
13 C572.8,465.7,541.2,505.3,541.2,505.3z M580.7,409.8l-101.9-85.7l101.9-85.7l31.2,39.6l-55.8,46.1l55.8,46.1L580.7,409.8z"/>
14</g>
15</svg>
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 @@
1{
2 "id": "keepervault",
3 "name": "Keeper Vault",
4 "version": "1.0.0",
5 "license": "MIT",
6 "config": {
7 "serviceURL": "https://keepersecurity.eu/vault/#"
8 }
9}
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 @@
1const _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) {
4 return obj && obj.__esModule ? obj : { default: obj };
5}
6
7module.exports = Ferdium => {
8 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
9};