diff --git a/recipes/memos/icon.svg b/recipes/memos/icon.svg new file mode 100644 index 000000000..8ee8786e7 --- /dev/null +++ b/recipes/memos/icon.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + diff --git a/recipes/memos/index.js b/recipes/memos/index.js new file mode 100644 index 000000000..dd41f7287 --- /dev/null +++ b/recipes/memos/index.js @@ -0,0 +1 @@ +module.exports = Ferdium => Ferdium; diff --git a/recipes/memos/package.json b/recipes/memos/package.json new file mode 100644 index 000000000..c034063fa --- /dev/null +++ b/recipes/memos/package.json @@ -0,0 +1,16 @@ +{ + "id": "memos", + "name": "memos", + "version": "1.0.0", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/usememos/memos" + }, + "config": { + "message": "A self-hosted privacy-first, lightweight note-taking service. Easily capture and share your great thoughts.", + "serviceURL": "https://demo.usememos.com/", + "hasCustomUrl": true, + "hasDirectMessages": false + } +} diff --git a/recipes/memos/webview.js b/recipes/memos/webview.js new file mode 100644 index 000000000..11192196b --- /dev/null +++ b/recipes/memos/webview.js @@ -0,0 +1,9 @@ +function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; +} + +const _path = _interopRequireDefault(require('path')); + +module.exports = Ferdium => { + Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); +};