add Readwise Daily Review preset (#127)

This commit is contained in:
Tyler Nieman 2024-07-02 09:25:47 -07:00 committed by GitHub
parent 0cf9067abf
commit adda469ed0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 1 deletions

View file

@ -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).

View file

@ -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 {