From b8857f2b4e595963f04c3bf5d002c33d137e9d5d Mon Sep 17 00:00:00 2001 From: Vijay A Date: Sat, 19 Jun 2021 17:07:14 +0530 Subject: Added new service: line.me (fixes #560) --- recipes/line.me/LICENSE | 21 +++++++++++++++++++++ recipes/line.me/icon.png | Bin 0 -> 86442 bytes recipes/line.me/icon.svg | 41 +++++++++++++++++++++++++++++++++++++++++ recipes/line.me/index.js | 3 +++ recipes/line.me/package.json | 24 ++++++++++++++++++++++++ recipes/line.me/webview.js | 4 ++++ 6 files changed, 93 insertions(+) create mode 100644 recipes/line.me/LICENSE create mode 100644 recipes/line.me/icon.png create mode 100644 recipes/line.me/icon.svg create mode 100644 recipes/line.me/index.js create mode 100644 recipes/line.me/package.json create mode 100644 recipes/line.me/webview.js (limited to 'recipes') diff --git a/recipes/line.me/LICENSE b/recipes/line.me/LICENSE new file mode 100644 index 0000000..99d6f23 --- /dev/null +++ b/recipes/line.me/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 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/line.me/icon.png b/recipes/line.me/icon.png new file mode 100644 index 0000000..bfd68cc Binary files /dev/null and b/recipes/line.me/icon.png differ diff --git a/recipes/line.me/icon.svg b/recipes/line.me/icon.svg new file mode 100644 index 0000000..c4eb5ea --- /dev/null +++ b/recipes/line.me/icon.svg @@ -0,0 +1,41 @@ + + + + +Created by potrace 1.16, written by Peter Selinger 2001-2019 + + + + + + + + + diff --git a/recipes/line.me/index.js b/recipes/line.me/index.js new file mode 100644 index 0000000..f6f7c6d --- /dev/null +++ b/recipes/line.me/index.js @@ -0,0 +1,3 @@ +module.exports = (Franz) => + class LineMe extends Franz { + }; diff --git a/recipes/line.me/package.json b/recipes/line.me/package.json new file mode 100644 index 0000000..64e00da --- /dev/null +++ b/recipes/line.me/package.json @@ -0,0 +1,24 @@ +{ + "id": "line-me", + "name": "Line.me", + "version": "1.0.0", + "description": "Line.me recipe for Franz", + "main": "index.js", + "author": "Vijay Raghavan Aravamudhan ", + "license": "MIT", + "config": { + "serviceURL": "https://line.me/en", + "serviceName": "Line.me", + "message": "", + "popup": [], + "hasNotificationSound": true, + "hasIndirectMessages": false, + "hasTeamID": false, + "customURL": false, + "hostedOnly": false, + "webviewOptions": { + "disablewebsecurity": "" + }, + "openDevTools": false + } +} diff --git a/recipes/line.me/webview.js b/recipes/line.me/webview.js new file mode 100644 index 0000000..2df0724 --- /dev/null +++ b/recipes/line.me/webview.js @@ -0,0 +1,4 @@ +"use strict"; + +module.exports = (Franz) => { +}; -- cgit v1.2.3-54-g00ecf