From 8fa4beaf8c74cf323d878d7ef19badf3460367a5 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Sat, 19 Jun 2021 20:24:53 +0530 Subject: Added new service: keybase.io (fixes #427) --- recipes/keybase.io/LICENSE | 21 +++++ recipes/keybase.io/icon.png | Bin 0 -> 496718 bytes recipes/keybase.io/icon.svg | 177 ++++++++++++++++++++++++++++++++++++++++ recipes/keybase.io/index.js | 3 + recipes/keybase.io/package.json | 13 +++ recipes/keybase.io/webview.js | 4 + 6 files changed, 218 insertions(+) create mode 100644 recipes/keybase.io/LICENSE create mode 100644 recipes/keybase.io/icon.png create mode 100644 recipes/keybase.io/icon.svg create mode 100644 recipes/keybase.io/index.js create mode 100644 recipes/keybase.io/package.json create mode 100644 recipes/keybase.io/webview.js (limited to 'recipes') diff --git a/recipes/keybase.io/LICENSE b/recipes/keybase.io/LICENSE new file mode 100644 index 0000000..366f626 --- /dev/null +++ b/recipes/keybase.io/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Vijay Raghavan Aravamudhan + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/recipes/keybase.io/icon.png b/recipes/keybase.io/icon.png new file mode 100644 index 0000000..bbdb725 Binary files /dev/null and b/recipes/keybase.io/icon.png differ diff --git a/recipes/keybase.io/icon.svg b/recipes/keybase.io/icon.svg new file mode 100644 index 0000000..438b508 --- /dev/null +++ b/recipes/keybase.io/icon.svg @@ -0,0 +1,177 @@ + + + + + + + + + + + diff --git a/recipes/keybase.io/index.js b/recipes/keybase.io/index.js new file mode 100644 index 0000000..f6f7c6d --- /dev/null +++ b/recipes/keybase.io/index.js @@ -0,0 +1,3 @@ +module.exports = (Franz) => + class LineMe extends Franz { + }; diff --git a/recipes/keybase.io/package.json b/recipes/keybase.io/package.json new file mode 100644 index 0000000..6fa036c --- /dev/null +++ b/recipes/keybase.io/package.json @@ -0,0 +1,13 @@ +{ + "id": "keybase.io", + "name": "Keybase", + "version": "1.0.0", + "description": "Keybase recipe for Franz", + "main": "index.js", + "author": "Vijay Raghavan Aravamudhan ", + "license": "MIT", + "config": { + "serviceURL": "https://keybase.io/login", + "hasNotificationSound": true + } +} diff --git a/recipes/keybase.io/webview.js b/recipes/keybase.io/webview.js new file mode 100644 index 0000000..2df0724 --- /dev/null +++ b/recipes/keybase.io/webview.js @@ -0,0 +1,4 @@ +"use strict"; + +module.exports = (Franz) => { +}; -- cgit v1.2.3-54-g00ecf