From 8a0971ff9f41fdaa1af15e88740ce9479e1ec6ea Mon Sep 17 00:00:00 2001 From: Vijay A Date: Sun, 20 Jun 2021 11:08:00 +0530 Subject: Added new services - 'air-droid' - 'basecamp' - 'box' - 'buffer' - 'chatra' - 'easy-redmine' - 'feedbin' - 'iCloud' - 'jollor' - 'nomadlist' - 'paymo' - 'pivotal-tracker' - 'plan' - 'podio' - 'protonet' - 'teamleader' --- recipes/buffer/css/franz.css | 3 ++ recipes/buffer/icon.png | Bin 0 -> 178881 bytes recipes/buffer/icon.svg | 105 +++++++++++++++++++++++++++++++++++++++++++ recipes/buffer/index.js | 2 + recipes/buffer/package.json | 24 ++++++++++ recipes/buffer/webview.js | 6 +++ 6 files changed, 140 insertions(+) create mode 100644 recipes/buffer/css/franz.css create mode 100644 recipes/buffer/icon.png create mode 100644 recipes/buffer/icon.svg create mode 100644 recipes/buffer/index.js create mode 100644 recipes/buffer/package.json create mode 100644 recipes/buffer/webview.js (limited to 'recipes/buffer') diff --git a/recipes/buffer/css/franz.css b/recipes/buffer/css/franz.css new file mode 100644 index 0000000..7803f95 --- /dev/null +++ b/recipes/buffer/css/franz.css @@ -0,0 +1,3 @@ +#modal-login-only { + visibility: visible; +} diff --git a/recipes/buffer/icon.png b/recipes/buffer/icon.png new file mode 100644 index 0000000..96f9801 Binary files /dev/null and b/recipes/buffer/icon.png differ diff --git a/recipes/buffer/icon.svg b/recipes/buffer/icon.svg new file mode 100644 index 0000000..d4739ef --- /dev/null +++ b/recipes/buffer/icon.svg @@ -0,0 +1,105 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/recipes/buffer/index.js b/recipes/buffer/index.js new file mode 100644 index 0000000..46f936f --- /dev/null +++ b/recipes/buffer/index.js @@ -0,0 +1,2 @@ +// just pass through Franz +module.exports = Franz => Franz; diff --git a/recipes/buffer/package.json b/recipes/buffer/package.json new file mode 100644 index 0000000..b798a09 --- /dev/null +++ b/recipes/buffer/package.json @@ -0,0 +1,24 @@ +{ + "id": "buffer", + "name": "buffer", + "version": "1.0.0", + "description": "Buffer – A better way to share on social media", + "main": "index.js", + "author": "Merlin Schumacher ", + "license": "GPL", + "config": { + "serviceURL": "https://buffer.com", + "serviceName": "Buffer", + "message": "Buffer – A better way to share on social media", + "popup": [], + "hasNotificationSound": true, + "hasIndirectMessages": false, + "hasTeamID": false, + "customURL": false, + "hostedOnly": false, + "webviewOptions": { + "disablewebsecurity": "" + }, + "openDevTools": false + } +} diff --git a/recipes/buffer/webview.js b/recipes/buffer/webview.js new file mode 100644 index 0000000..b1acc10 --- /dev/null +++ b/recipes/buffer/webview.js @@ -0,0 +1,6 @@ +const path = require('path'); + +module.exports = (Franz, options) => { + // inject franz.css stylesheet + Franz.injectCSS(path.join(__dirname, 'css', 'franz.css')); +}; -- cgit v1.2.3-70-g09d2