From adda469ed0b688670b710662bc9abca4d3d4fad7 Mon Sep 17 00:00:00 2001 From: Tyler Nieman Date: Tue, 2 Jul 2024 09:25:47 -0700 Subject: [PATCH] add Readwise Daily Review preset (#127) --- README.md | 1 + src/settings.ts | 14 +++++++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index da98e6d..6308685 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ By default, Custom Frames comes with a few presets that allow you to get new pan - [Todoist](https://todoist.com), optimized for a narrow (half-height) side panel by removing some buttons and slimming margins. - [Notion](https://www.notion.so/) (it's recommended to close Notion's sidebar if used as a side pane) - [Twitter](https://twitter.com) +- [Readwise Daily Review](https://readwise.io/dailyreview) If you create a frame that you think other people would like, don't hesitate to create a pull request with [a new preset](https://github.com/Ellpeck/ObsidianCustomFrames/blob/master/src/settings.ts#L5). diff --git a/src/settings.ts b/src/settings.ts index 3e07bae..a84295f 100644 --- a/src/settings.ts +++ b/src/settings.ts @@ -134,7 +134,19 @@ html > body > div:first-child > header:first-child > div > div:first-child > div forceIframe: false, customCss: "", customJs: "" - } + }, + "readwise-daily-review": { + "url": "https://readwise.io/dailyreview", + "displayName": "Readwise Daily Review", + "icon": "highlighter", + "hideOnMobile": true, + "addRibbonIcon": false, + "openInCenter": false, + "zoomLevel": 1, + "forceIframe": false, + "customCss": ".fixed-nav {\n display: none !important;\n}", + "customJs": "" + }, }; export interface CustomFramesSettings {