├── LICENSE ├── README.md ├── always-on-top ├── always-on-top.jpg ├── button.css ├── button.mjs ├── client.mjs ├── menu.mjs └── mod.json ├── bypass-preview ├── client.css ├── client.mjs └── mod.json ├── calendar-scroll ├── calendar-scroll.png ├── client.css ├── client.mjs └── mod.json ├── cherry-cola ├── cherry-cola.png ├── mod.json └── variables.css ├── code-line-numbers ├── client.css ├── client.mjs ├── code-line-numbers.png └── mod.json ├── collapsible-properties ├── client.css ├── client.mjs ├── collapsible-properties.jpg └── mod.json ├── components └── mod.json ├── dark+ ├── dark+.png ├── mod.json ├── theme.mjs └── variables.css ├── dracula ├── app.css ├── dracula.png ├── mod.json └── variables.css ├── emoji-sets ├── client.css ├── client.mjs ├── emoji-sets.jpg └── mod.json ├── focus-mode ├── client.css ├── client.mjs ├── mod.json ├── tabs.css └── tabs.mjs ├── font-chooser ├── fonts.css ├── fonts.mjs └── mod.json ├── global-block-links ├── client.css ├── client.mjs ├── global-block-links.jpg └── mod.json ├── gruvbox-dark ├── gruvbox-dark.png ├── mod.json └── variables.css ├── gruvbox-light ├── gruvbox-light.png ├── mod.json └── variables.css ├── icon-sets ├── client.css ├── client.mjs ├── icon-sets.jpg └── mod.json ├── indentation-lines ├── client.css ├── client.mjs ├── indentation-lines.jpg └── mod.json ├── integrated-titlebar ├── buttons.css ├── buttons.mjs ├── client.mjs ├── createWindow.cjs ├── frame.mjs ├── integrated-titlebar.jpg ├── menu.mjs └── mod.json ├── light+ ├── light+.png ├── mod.json ├── theme.mjs └── variables.css ├── material-ocean ├── material-ocean.png ├── mod.json └── variables.css ├── menu ├── client.css ├── client.mjs ├── components.mjs ├── markdown.css ├── menu.css ├── menu.html ├── menu.mjs ├── mod.json ├── notifications.mjs ├── router.mjs └── styles.mjs ├── neutral ├── app.css ├── mod.json ├── neutral.png └── variables.css ├── nord ├── mod.json ├── nord.png └── variables.css ├── outliner ├── client.css ├── client.mjs ├── mod.json └── outliner.png ├── pastel-dark ├── app.css ├── mod.json ├── pastel-dark.png └── variables.css ├── pinky-boom ├── mod.json ├── pinky-boom.png └── variables.css ├── playful-purple ├── mod.json ├── playful-purple.png └── variables.css ├── quick-note ├── client.mjs ├── mod.json └── quick-note.png ├── registry.json ├── right-to-left ├── client.css ├── client.mjs ├── mod.json └── right-to-left.jpg ├── scroll-to-top ├── client.mjs ├── mod.json └── scroll-to-top.png ├── simpler-databases ├── client.css ├── client.mjs ├── mod.json └── simpler-databases.jpg ├── tabs ├── client.mjs ├── createWindow.cjs ├── main.cjs ├── mod.json ├── rendererIndex.cjs ├── systemMenu.cjs ├── tab.cjs ├── tabs.css └── tabs.jpg ├── theming ├── _mapColors.js ├── client.mjs ├── colors.css ├── electronSearch.css ├── frame.mjs ├── main.cjs ├── menu.mjs ├── mod.json ├── patches.css ├── prism.css ├── rendererSearch.cjs ├── theme.css └── variables.css ├── topbar-icons ├── client.mjs ├── mod.json └── topbar-icons.jpg ├── tray ├── client.mjs ├── createWindow.cjs ├── main.cjs ├── mod.json └── tray.jpg ├── truncated-titles ├── client.mjs ├── mod.json └── truncated-titles.jpg ├── tweaks ├── client.css ├── client.mjs └── mod.json ├── view-scale ├── client.css ├── client.mjs ├── mod.json └── view-scale.jpg ├── weekly-view ├── client.mjs ├── mod.json └── weekly-view.jpg └── word-counter ├── client.css ├── client.mjs ├── mod.json └── word-counter.jpg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/README.md -------------------------------------------------------------------------------- /always-on-top/always-on-top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/always-on-top/always-on-top.jpg -------------------------------------------------------------------------------- /always-on-top/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/always-on-top/button.css -------------------------------------------------------------------------------- /always-on-top/button.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/always-on-top/button.mjs -------------------------------------------------------------------------------- /always-on-top/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/always-on-top/client.mjs -------------------------------------------------------------------------------- /always-on-top/menu.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/always-on-top/menu.mjs -------------------------------------------------------------------------------- /always-on-top/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/always-on-top/mod.json -------------------------------------------------------------------------------- /bypass-preview/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/bypass-preview/client.css -------------------------------------------------------------------------------- /bypass-preview/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/bypass-preview/client.mjs -------------------------------------------------------------------------------- /bypass-preview/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/bypass-preview/mod.json -------------------------------------------------------------------------------- /calendar-scroll/calendar-scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/calendar-scroll/calendar-scroll.png -------------------------------------------------------------------------------- /calendar-scroll/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/calendar-scroll/client.css -------------------------------------------------------------------------------- /calendar-scroll/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/calendar-scroll/client.mjs -------------------------------------------------------------------------------- /calendar-scroll/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/calendar-scroll/mod.json -------------------------------------------------------------------------------- /cherry-cola/cherry-cola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/cherry-cola/cherry-cola.png -------------------------------------------------------------------------------- /cherry-cola/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/cherry-cola/mod.json -------------------------------------------------------------------------------- /cherry-cola/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/cherry-cola/variables.css -------------------------------------------------------------------------------- /code-line-numbers/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/code-line-numbers/client.css -------------------------------------------------------------------------------- /code-line-numbers/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/code-line-numbers/client.mjs -------------------------------------------------------------------------------- /code-line-numbers/code-line-numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/code-line-numbers/code-line-numbers.png -------------------------------------------------------------------------------- /code-line-numbers/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/code-line-numbers/mod.json -------------------------------------------------------------------------------- /collapsible-properties/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/collapsible-properties/client.css -------------------------------------------------------------------------------- /collapsible-properties/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/collapsible-properties/client.mjs -------------------------------------------------------------------------------- /collapsible-properties/collapsible-properties.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/collapsible-properties/collapsible-properties.jpg -------------------------------------------------------------------------------- /collapsible-properties/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/collapsible-properties/mod.json -------------------------------------------------------------------------------- /components/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/components/mod.json -------------------------------------------------------------------------------- /dark+/dark+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/dark+/dark+.png -------------------------------------------------------------------------------- /dark+/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/dark+/mod.json -------------------------------------------------------------------------------- /dark+/theme.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/dark+/theme.mjs -------------------------------------------------------------------------------- /dark+/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/dark+/variables.css -------------------------------------------------------------------------------- /dracula/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/dracula/app.css -------------------------------------------------------------------------------- /dracula/dracula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/dracula/dracula.png -------------------------------------------------------------------------------- /dracula/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/dracula/mod.json -------------------------------------------------------------------------------- /dracula/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/dracula/variables.css -------------------------------------------------------------------------------- /emoji-sets/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/emoji-sets/client.css -------------------------------------------------------------------------------- /emoji-sets/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/emoji-sets/client.mjs -------------------------------------------------------------------------------- /emoji-sets/emoji-sets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/emoji-sets/emoji-sets.jpg -------------------------------------------------------------------------------- /emoji-sets/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/emoji-sets/mod.json -------------------------------------------------------------------------------- /focus-mode/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/focus-mode/client.css -------------------------------------------------------------------------------- /focus-mode/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/focus-mode/client.mjs -------------------------------------------------------------------------------- /focus-mode/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/focus-mode/mod.json -------------------------------------------------------------------------------- /focus-mode/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/focus-mode/tabs.css -------------------------------------------------------------------------------- /focus-mode/tabs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/focus-mode/tabs.mjs -------------------------------------------------------------------------------- /font-chooser/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/font-chooser/fonts.css -------------------------------------------------------------------------------- /font-chooser/fonts.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/font-chooser/fonts.mjs -------------------------------------------------------------------------------- /font-chooser/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/font-chooser/mod.json -------------------------------------------------------------------------------- /global-block-links/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/global-block-links/client.css -------------------------------------------------------------------------------- /global-block-links/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/global-block-links/client.mjs -------------------------------------------------------------------------------- /global-block-links/global-block-links.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/global-block-links/global-block-links.jpg -------------------------------------------------------------------------------- /global-block-links/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/global-block-links/mod.json -------------------------------------------------------------------------------- /gruvbox-dark/gruvbox-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/gruvbox-dark/gruvbox-dark.png -------------------------------------------------------------------------------- /gruvbox-dark/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/gruvbox-dark/mod.json -------------------------------------------------------------------------------- /gruvbox-dark/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/gruvbox-dark/variables.css -------------------------------------------------------------------------------- /gruvbox-light/gruvbox-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/gruvbox-light/gruvbox-light.png -------------------------------------------------------------------------------- /gruvbox-light/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/gruvbox-light/mod.json -------------------------------------------------------------------------------- /gruvbox-light/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/gruvbox-light/variables.css -------------------------------------------------------------------------------- /icon-sets/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/icon-sets/client.css -------------------------------------------------------------------------------- /icon-sets/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/icon-sets/client.mjs -------------------------------------------------------------------------------- /icon-sets/icon-sets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/icon-sets/icon-sets.jpg -------------------------------------------------------------------------------- /icon-sets/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/icon-sets/mod.json -------------------------------------------------------------------------------- /indentation-lines/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/indentation-lines/client.css -------------------------------------------------------------------------------- /indentation-lines/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/indentation-lines/client.mjs -------------------------------------------------------------------------------- /indentation-lines/indentation-lines.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/indentation-lines/indentation-lines.jpg -------------------------------------------------------------------------------- /indentation-lines/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/indentation-lines/mod.json -------------------------------------------------------------------------------- /integrated-titlebar/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/integrated-titlebar/buttons.css -------------------------------------------------------------------------------- /integrated-titlebar/buttons.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/integrated-titlebar/buttons.mjs -------------------------------------------------------------------------------- /integrated-titlebar/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/integrated-titlebar/client.mjs -------------------------------------------------------------------------------- /integrated-titlebar/createWindow.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/integrated-titlebar/createWindow.cjs -------------------------------------------------------------------------------- /integrated-titlebar/frame.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/integrated-titlebar/frame.mjs -------------------------------------------------------------------------------- /integrated-titlebar/integrated-titlebar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/integrated-titlebar/integrated-titlebar.jpg -------------------------------------------------------------------------------- /integrated-titlebar/menu.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/integrated-titlebar/menu.mjs -------------------------------------------------------------------------------- /integrated-titlebar/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/integrated-titlebar/mod.json -------------------------------------------------------------------------------- /light+/light+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/light+/light+.png -------------------------------------------------------------------------------- /light+/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/light+/mod.json -------------------------------------------------------------------------------- /light+/theme.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/light+/theme.mjs -------------------------------------------------------------------------------- /light+/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/light+/variables.css -------------------------------------------------------------------------------- /material-ocean/material-ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/material-ocean/material-ocean.png -------------------------------------------------------------------------------- /material-ocean/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/material-ocean/mod.json -------------------------------------------------------------------------------- /material-ocean/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/material-ocean/variables.css -------------------------------------------------------------------------------- /menu/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/menu/client.css -------------------------------------------------------------------------------- /menu/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/menu/client.mjs -------------------------------------------------------------------------------- /menu/components.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/menu/components.mjs -------------------------------------------------------------------------------- /menu/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/menu/markdown.css -------------------------------------------------------------------------------- /menu/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/menu/menu.css -------------------------------------------------------------------------------- /menu/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/menu/menu.html -------------------------------------------------------------------------------- /menu/menu.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/menu/menu.mjs -------------------------------------------------------------------------------- /menu/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/menu/mod.json -------------------------------------------------------------------------------- /menu/notifications.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/menu/notifications.mjs -------------------------------------------------------------------------------- /menu/router.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/menu/router.mjs -------------------------------------------------------------------------------- /menu/styles.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/menu/styles.mjs -------------------------------------------------------------------------------- /neutral/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/neutral/app.css -------------------------------------------------------------------------------- /neutral/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/neutral/mod.json -------------------------------------------------------------------------------- /neutral/neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/neutral/neutral.png -------------------------------------------------------------------------------- /neutral/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/neutral/variables.css -------------------------------------------------------------------------------- /nord/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/nord/mod.json -------------------------------------------------------------------------------- /nord/nord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/nord/nord.png -------------------------------------------------------------------------------- /nord/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/nord/variables.css -------------------------------------------------------------------------------- /outliner/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/outliner/client.css -------------------------------------------------------------------------------- /outliner/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/outliner/client.mjs -------------------------------------------------------------------------------- /outliner/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/outliner/mod.json -------------------------------------------------------------------------------- /outliner/outliner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/outliner/outliner.png -------------------------------------------------------------------------------- /pastel-dark/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/pastel-dark/app.css -------------------------------------------------------------------------------- /pastel-dark/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/pastel-dark/mod.json -------------------------------------------------------------------------------- /pastel-dark/pastel-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/pastel-dark/pastel-dark.png -------------------------------------------------------------------------------- /pastel-dark/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/pastel-dark/variables.css -------------------------------------------------------------------------------- /pinky-boom/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/pinky-boom/mod.json -------------------------------------------------------------------------------- /pinky-boom/pinky-boom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/pinky-boom/pinky-boom.png -------------------------------------------------------------------------------- /pinky-boom/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/pinky-boom/variables.css -------------------------------------------------------------------------------- /playful-purple/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/playful-purple/mod.json -------------------------------------------------------------------------------- /playful-purple/playful-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/playful-purple/playful-purple.png -------------------------------------------------------------------------------- /playful-purple/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/playful-purple/variables.css -------------------------------------------------------------------------------- /quick-note/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/quick-note/client.mjs -------------------------------------------------------------------------------- /quick-note/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/quick-note/mod.json -------------------------------------------------------------------------------- /quick-note/quick-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/quick-note/quick-note.png -------------------------------------------------------------------------------- /registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/registry.json -------------------------------------------------------------------------------- /right-to-left/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/right-to-left/client.css -------------------------------------------------------------------------------- /right-to-left/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/right-to-left/client.mjs -------------------------------------------------------------------------------- /right-to-left/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/right-to-left/mod.json -------------------------------------------------------------------------------- /right-to-left/right-to-left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/right-to-left/right-to-left.jpg -------------------------------------------------------------------------------- /scroll-to-top/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/scroll-to-top/client.mjs -------------------------------------------------------------------------------- /scroll-to-top/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/scroll-to-top/mod.json -------------------------------------------------------------------------------- /scroll-to-top/scroll-to-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/scroll-to-top/scroll-to-top.png -------------------------------------------------------------------------------- /simpler-databases/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/simpler-databases/client.css -------------------------------------------------------------------------------- /simpler-databases/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/simpler-databases/client.mjs -------------------------------------------------------------------------------- /simpler-databases/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/simpler-databases/mod.json -------------------------------------------------------------------------------- /simpler-databases/simpler-databases.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/simpler-databases/simpler-databases.jpg -------------------------------------------------------------------------------- /tabs/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tabs/client.mjs -------------------------------------------------------------------------------- /tabs/createWindow.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tabs/createWindow.cjs -------------------------------------------------------------------------------- /tabs/main.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tabs/main.cjs -------------------------------------------------------------------------------- /tabs/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tabs/mod.json -------------------------------------------------------------------------------- /tabs/rendererIndex.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tabs/rendererIndex.cjs -------------------------------------------------------------------------------- /tabs/systemMenu.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tabs/systemMenu.cjs -------------------------------------------------------------------------------- /tabs/tab.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tabs/tab.cjs -------------------------------------------------------------------------------- /tabs/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tabs/tabs.css -------------------------------------------------------------------------------- /tabs/tabs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tabs/tabs.jpg -------------------------------------------------------------------------------- /theming/_mapColors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/theming/_mapColors.js -------------------------------------------------------------------------------- /theming/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/theming/client.mjs -------------------------------------------------------------------------------- /theming/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/theming/colors.css -------------------------------------------------------------------------------- /theming/electronSearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/theming/electronSearch.css -------------------------------------------------------------------------------- /theming/frame.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/theming/frame.mjs -------------------------------------------------------------------------------- /theming/main.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/theming/main.cjs -------------------------------------------------------------------------------- /theming/menu.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/theming/menu.mjs -------------------------------------------------------------------------------- /theming/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/theming/mod.json -------------------------------------------------------------------------------- /theming/patches.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/theming/patches.css -------------------------------------------------------------------------------- /theming/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/theming/prism.css -------------------------------------------------------------------------------- /theming/rendererSearch.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/theming/rendererSearch.cjs -------------------------------------------------------------------------------- /theming/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/theming/theme.css -------------------------------------------------------------------------------- /theming/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/theming/variables.css -------------------------------------------------------------------------------- /topbar-icons/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/topbar-icons/client.mjs -------------------------------------------------------------------------------- /topbar-icons/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/topbar-icons/mod.json -------------------------------------------------------------------------------- /topbar-icons/topbar-icons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/topbar-icons/topbar-icons.jpg -------------------------------------------------------------------------------- /tray/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tray/client.mjs -------------------------------------------------------------------------------- /tray/createWindow.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tray/createWindow.cjs -------------------------------------------------------------------------------- /tray/main.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tray/main.cjs -------------------------------------------------------------------------------- /tray/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tray/mod.json -------------------------------------------------------------------------------- /tray/tray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tray/tray.jpg -------------------------------------------------------------------------------- /truncated-titles/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/truncated-titles/client.mjs -------------------------------------------------------------------------------- /truncated-titles/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/truncated-titles/mod.json -------------------------------------------------------------------------------- /truncated-titles/truncated-titles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/truncated-titles/truncated-titles.jpg -------------------------------------------------------------------------------- /tweaks/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tweaks/client.css -------------------------------------------------------------------------------- /tweaks/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tweaks/client.mjs -------------------------------------------------------------------------------- /tweaks/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/tweaks/mod.json -------------------------------------------------------------------------------- /view-scale/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/view-scale/client.css -------------------------------------------------------------------------------- /view-scale/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/view-scale/client.mjs -------------------------------------------------------------------------------- /view-scale/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/view-scale/mod.json -------------------------------------------------------------------------------- /view-scale/view-scale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/view-scale/view-scale.jpg -------------------------------------------------------------------------------- /weekly-view/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/weekly-view/client.mjs -------------------------------------------------------------------------------- /weekly-view/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/weekly-view/mod.json -------------------------------------------------------------------------------- /weekly-view/weekly-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/weekly-view/weekly-view.jpg -------------------------------------------------------------------------------- /word-counter/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/word-counter/client.css -------------------------------------------------------------------------------- /word-counter/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/word-counter/client.mjs -------------------------------------------------------------------------------- /word-counter/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/word-counter/mod.json -------------------------------------------------------------------------------- /word-counter/word-counter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notion-enhancer/repo/HEAD/word-counter/word-counter.jpg --------------------------------------------------------------------------------