From 22b429890c3bc3d664b9f1dd4e0d1aeab8d5e48e Mon Sep 17 00:00:00 2001 From: Vijay A Date: Fri, 21 May 2021 07:46:01 +0530 Subject: Added new recipe: google-contacts (fixes #487) --- recipes/googlecontacts/README.md | 8 ++++++++ recipes/googlecontacts/icon.png | Bin 0 -> 115229 bytes recipes/googlecontacts/icon.svg | 22 ++++++++++++++++++++++ recipes/googlecontacts/index.js | 2 ++ recipes/googlecontacts/package.json | 12 ++++++++++++ recipes/googlecontacts/webview.js | 1 + 6 files changed, 45 insertions(+) create mode 100644 recipes/googlecontacts/README.md create mode 100644 recipes/googlecontacts/icon.png create mode 100644 recipes/googlecontacts/icon.svg create mode 100644 recipes/googlecontacts/index.js create mode 100644 recipes/googlecontacts/package.json create mode 100644 recipes/googlecontacts/webview.js (limited to 'recipes') diff --git a/recipes/googlecontacts/README.md b/recipes/googlecontacts/README.md new file mode 100644 index 0000000..1be20c0 --- /dev/null +++ b/recipes/googlecontacts/README.md @@ -0,0 +1,8 @@ +# Google Contacts for Ferdi +A Ferdi recipe for Google Contacts + +### Release notes +1.0.0: Initial release + +### How to create your own Ferdi recipes: +* [Read the documentation](https://github.com/getferdi/recipes/blob/master/docs/integration.md) diff --git a/recipes/googlecontacts/icon.png b/recipes/googlecontacts/icon.png new file mode 100644 index 0000000..4ffcdae Binary files /dev/null and b/recipes/googlecontacts/icon.png differ diff --git a/recipes/googlecontacts/icon.svg b/recipes/googlecontacts/icon.svg new file mode 100644 index 0000000..3489f19 --- /dev/null +++ b/recipes/googlecontacts/icon.svg @@ -0,0 +1,22 @@ + + + + + + + + diff --git a/recipes/googlecontacts/index.js b/recipes/googlecontacts/index.js new file mode 100644 index 0000000..0f639fe --- /dev/null +++ b/recipes/googlecontacts/index.js @@ -0,0 +1,2 @@ +"use strict"; +module.exports = Franz => Franz; diff --git a/recipes/googlecontacts/package.json b/recipes/googlecontacts/package.json new file mode 100644 index 0000000..c633f6a --- /dev/null +++ b/recipes/googlecontacts/package.json @@ -0,0 +1,12 @@ +{ + "id": "google-contacts", + "name": "Google Contacts", + "version": "1.0.0", + "description": "Google Contacts", + "main": "index.js", + "author": "Vijay Raghavan Aravamudhan ", + "license": "MIT", + "config": { + "serviceURL": "https://contacts.google.com/" + } +} diff --git a/recipes/googlecontacts/webview.js b/recipes/googlecontacts/webview.js new file mode 100644 index 0000000..3918c74 --- /dev/null +++ b/recipes/googlecontacts/webview.js @@ -0,0 +1 @@ +"use strict"; -- cgit v1.2.3-54-g00ecf