mirror of
https://github.com/Ellpeck/ObsidianCustomFrames.git
synced 2024-11-23 10:08:33 +01:00
add Readwise Daily Review preset (#127)
This commit is contained in:
parent
0cf9067abf
commit
adda469ed0
2 changed files with 14 additions and 1 deletions
|
@ -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.
|
- [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)
|
- [Notion](https://www.notion.so/) (it's recommended to close Notion's sidebar if used as a side pane)
|
||||||
- [Twitter](https://twitter.com)
|
- [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).
|
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).
|
||||||
|
|
||||||
|
|
|
@ -134,7 +134,19 @@ html > body > div:first-child > header:first-child > div > div:first-child > div
|
||||||
forceIframe: false,
|
forceIframe: false,
|
||||||
customCss: "",
|
customCss: "",
|
||||||
customJs: ""
|
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 {
|
export interface CustomFramesSettings {
|
||||||
|
|
Loading…
Reference in a new issue