mirror of
https://github.com/Ellpeck/ObsidianCustomFrames.git
synced 2024-11-27 19:48:35 +01:00
Compare commits
3 commits
0ec307eab6
...
3526aaf70c
Author | SHA1 | Date | |
---|---|---|---|
3526aaf70c | |||
b0a325a04f | |||
|
df1ddd5c17 |
7 changed files with 17 additions and 10 deletions
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "obsidian-custom-frames",
|
||||
"name": "Custom Frames",
|
||||
"version": "2.4.6",
|
||||
"version": "2.4.7",
|
||||
"minAppVersion": "1.2.0",
|
||||
"description": "A plugin that turns web apps into panes using iframes with custom styling. Also comes with presets for Google Keep, Todoist and more.",
|
||||
"author": "Ellpeck",
|
||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "obsidian-custom-frames",
|
||||
"version": "2.4.6",
|
||||
"version": "2.4.7",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "obsidian-custom-frames",
|
||||
"version": "2.4.6",
|
||||
"version": "2.4.7",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@types/node": "^16.11.6",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "obsidian-custom-frames",
|
||||
"version": "2.4.6",
|
||||
"version": "2.4.7",
|
||||
"description": "An Obsidian plugin that turns web apps into panes using iframes with custom styling. Also comes with presets for Google Keep, Todoist and more.",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -197,7 +197,8 @@ export class CustomFramesSettingTab extends PluginSettingTab {
|
|||
openInCenter: false,
|
||||
zoomLevel: 1,
|
||||
forceIframe: false,
|
||||
customCss: ""
|
||||
customCss: "",
|
||||
customJs: ""
|
||||
});
|
||||
} else {
|
||||
this.plugin.settings.frames.push(presets[option]);
|
||||
|
|
|
@ -59,10 +59,15 @@ div[style*="min-width: 238px"] span[role*="heading"] {
|
|||
openInCenter: false,
|
||||
zoomLevel: 1,
|
||||
forceIframe: false,
|
||||
customCss: `/* hide the menu bar and the "Keep" text */
|
||||
customCss: `/* hide the menu bar, the "Keep" text and the Google Apps button */
|
||||
html > body > div:nth-child(2) > div:nth-child(2) > div:first-child,
|
||||
html > body > div:first-child > header:first-child > div > div:first-child > div > div:first-child > a:first-child > span {
|
||||
html > body > div:first-child > header:first-child > div > div:first-child > div > div:first-child > a:first-child > span,
|
||||
html > body > div:first-child > header:first-child > div:nth-child(2) > div:first-child > div:first-child,
|
||||
html > body > div:first-child > header:first-child > div:nth-child(2) > div:nth-child(3) > div:first-child > div:first-child > div:first-child {
|
||||
display: none !important;
|
||||
}
|
||||
html > body > div:first-child > header:first-child > div > div:first-child > div > div:first-child > a:first-child {
|
||||
cursor: default;
|
||||
}`,
|
||||
customJs: ""
|
||||
},
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
"openInCenter": false,
|
||||
"zoomLevel": 1,
|
||||
"forceIframe": false,
|
||||
"customCss": "/* hide the menu bar and the \"Keep\" text */\nhtml > body > div:nth-child(2) > div:nth-child(2) > div:first-child, \nhtml > body > div:first-child > header:first-child > div > div:first-child > div > div:first-child > a:first-child > span { \n\tdisplay: none !important; \n}"
|
||||
"customCss": "/* hide the menu bar, the \"Keep\" text and the Google Apps button */\nhtml > body > div:nth-child(2) > div:nth-child(2) > div:first-child, \nhtml > body > div:first-child > header:first-child > div > div:first-child > div > div:first-child > a:first-child > span, \nhtml > body > div:first-child > header:first-child > div:nth-child(2) > div:first-child > div:first-child, \nhtml > body > div:first-child > header:first-child > div:nth-child(2) > div:nth-child(3) > div:first-child > div:first-child > div:first-child { \n\tdisplay: none !important; \n}\nhtml > body > div:first-child > header:first-child > div > div:first-child > div > div:first-child > a:first-child {\n\tcursor: default; \n}"
|
||||
},
|
||||
{
|
||||
"url": "https://calendar.google.com/calendar",
|
||||
|
@ -46,4 +46,4 @@
|
|||
}
|
||||
],
|
||||
"padding": 5
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,5 +12,6 @@
|
|||
"2.4.3": "0.15.5",
|
||||
"2.4.4": "0.16.0",
|
||||
"2.4.5": "1.1.0",
|
||||
"2.4.6": "1.2.0"
|
||||
"2.4.6": "1.2.0",
|
||||
"2.4.7": "1.2.0"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue