Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit 913ad13

Browse files
committed
extension + integration screenshots
1 parent 24166e2 commit 913ad13

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+31
-13
lines changed

calendar-scroll/calendar-scroll.png

19.3 KB

calendar-scroll/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "b1c7db33-dfee-489a-a76c-0dd66f7ed29a",
44
"version": "0.2.0",
55
"description": "adds a button to jump down to the current week in fullpage/infinite-scroll calendars.",
6+
"preview": "calendar-scroll.png",
67
"tags": ["extension", "shortcut"],
78
"authors": [
89
{
File renamed without changes.

cherry-cola/mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"id": "ec5c4640-68d4-4d25-aefd-62c7e9737cfb",
44
"version": "0.2.0",
55
"description": "a delightfully plummy, cherry cola flavored theme.",
6-
"preview": "preview.png",
6+
"preview": "cherry-cola.png",
77
"tags": ["theme", "dark"],
88
"authors": [
99
{
19.2 KB

code-line-numbers/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "d61dc8a7-b195-465b-935f-53eea9efe74e",
44
"version": "0.4.0",
55
"description": "adds line numbers to code blocks.",
6+
"preview": "code-line-numbers.png",
67
"tags": ["extension", "usability"],
78
"authors": [
89
{
146 KB

collapsible-headers/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "548fe2d7-174a-44dd-88d8-35c7f9a093a7",
44
"version": "0.2.0",
55
"description": "adds toggles to collapse header sections of pages.",
6+
"preview": "collapsible-headers.gif",
67
"tags": ["extension", "layout"],
78
"authors": [
89
{

collapsible-properties/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "4034a578-7dd3-4633-80c6-f47ac5b7b160",
44
"version": "0.3.0",
55
"description": "adds a button to quickly collapse/expand page properties that usually push down page content.",
6+
"preview": "collapsible-properties.jpg",
67
"tags": ["extension", "layout"],
78
"authors": [
89
{
File renamed without changes.

dark+/mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"id": "c86cfe98-e645-4822-aa6b-e2de1e08bafa",
44
"version": "0.2.0",
55
"description": "a vivid-colour near-black theme, with configurable accents.",
6-
"preview": "preview.png",
6+
"preview": "dark+.png",
77
"tags": ["theme", "dark"],
88
"authors": [
99
{
File renamed without changes.

dracula/mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"id": "033bff54-50ba-4cec-bdc0-b2ca7e307086",
44
"version": "0.3.0",
55
"description": "a theme based on the popular dracula color palette originally by zeno rocha and friends.",
6-
"preview": "preview.png",
6+
"preview": "dracula.png",
77
"tags": ["theme", "dark"],
88
"authors": [
99
{

emoji-sets/emoji-sets.jpg

79.3 KB

emoji-sets/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "a2401ee1-93ba-4b8c-9781-7f570bf5d71e",
44
"version": "0.4.0",
55
"description": "pick from a variety of emoji styles to use.",
6+
"preview": "emoji-sets.jpg",
67
"tags": ["extension", "customisation"],
78
"authors": [
89
{
9.01 KB

global-block-links/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "74856af4-6970-455d-bd86-0a385a402dd1",
44
"version": "0.1.0",
55
"description": "easily copy the global link of a page or block.",
6+
"preview": "global-block-links.jpg",
67
"tags": ["extension", "shortcut"],
78
"authors": [
89
{
File renamed without changes.

gruvbox-dark/mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"id": "ad0f5c5c-8b62-4b20-8a54-929e663ea368",
44
"version": "0.3.0",
55
"description": "a gray, 'retro groove' palette based on the vim theme of the same name.",
6-
"preview": "preview.png",
6+
"preview": "gruvbox-dark.png",
77
"tags": ["theme", "dark"],
88
"authors": [
99
{
File renamed without changes.

gruvbox-light/mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"id": "54f01911-60fc-4c9d-85b5-5c5ca3dd6b81",
44
"version": "0.3.0",
55
"description": "a sepia, 'retro groove' palette based on the vim theme of the same name.",
6-
"preview": "preview.png",
6+
"preview": "gruvbox-light.png",
77
"tags": ["theme", "light"],
88
"authors": [
99
{

icon-sets/client.mjs

+2-1
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,7 @@ export default async function ({ web, fs, components, notion }, db) {
275275

276276
const submitLinkIcon = () => {
277277
const url = $iconsLinkInput.firstElementChild.value;
278+
if (!url) return;
278279
setIcon(url);
279280
recentUploads.push({ signed: notion.sign(url, notion.getPageID()), url: url });
280281
db.set(['recent_uploads'], recentUploads);
@@ -285,7 +286,7 @@ export default async function ({ web, fs, components, notion }, db) {
285286
$iconsLinkSubmit.onclick = submitLinkIcon;
286287

287288
// upload file to aws, then submit link
288-
$iconsUploadSubmit.onclick = $iconsUploadFile.click;
289+
$iconsUploadSubmit.onclick = () => $iconsUploadFile.click();
289290
$iconsUploadFile.onchange = async (event) => {
290291
const file = event.target.files[0],
291292
url = await notion.upload(file);

icon-sets/icon-sets.jpg

36.4 KB

icon-sets/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "2d1f4809-9581-40dd-9bf3-4239db406483",
44
"version": "0.4.0",
55
"description": "upload, save and reuse custom icons directly from the icon picker. check out the [icons page](https://notion-enhancer.github.io/mods/icon-sets) for instructions on loading entire sets.",
6+
"preview": "icon-sets.jpg",
67
"tags": ["integration", "customisation"],
78
"authors": [
89
{
11 KB

indentation-lines/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "35815b3b-3916-4dc6-8769-c9c2448f8b57",
44
"version": "0.2.0",
55
"description": "adds vertical relationship lines to make list trees easier to follow.",
6+
"preview": "indentation-lines.jpg",
67
"tags": ["extension", "usability"],
78
"authors": [
89
{
File renamed without changes.

light+/mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"id": "336cbc54-67b9-4b00-b4a2-9cc86eef763b",
44
"version": "0.2.0",
55
"description": "a simple white theme that brightens coloured text and blocks, with configurable accents.",
6-
"preview": "preview.png",
6+
"preview": "light+.png",
77
"tags": ["theme", "light"],
88
"authors": [
99
{
File renamed without changes.

material-ocean/mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"id": "69e7ccb2-4aef-484c-876d-3de1b433d2b9",
44
"version": "0.2.0",
55
"description": "an oceanic colour palette.",
6-
"preview": "preview.png",
6+
"preview": "material-ocean.png",
77
"tags": ["theme", "dark"],
88
"authors": [
99
{

neutral/mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"id": "c4435543-4705-4d68-8cf7-d11c342f8089",
44
"version": "0.2.0",
55
"description": "smoother colours and text sizing, designed to be more pleasing to the eye.",
6-
"preview": "preview.png",
6+
"preview": "neutral.png",
77
"tags": ["theme", "dark"],
88
"authors": [
99
{
File renamed without changes.

nord/mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"id": "d64ad391-1494-4112-80ae-0a3b6f4b0c3f",
44
"version": "0.2.0",
55
"description": "an arctic, north-bluish color palette.",
6-
"preview": "preview.png",
6+
"preview": "nord.png",
77
"tags": ["theme", "dark"],
88
"authors": [
99
{
File renamed without changes.

outliner/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "87e077cc-5402-451c-ac70-27cc4ae65546",
44
"version": "0.4.0",
55
"description": "adds a table of contents to the side panel.",
6+
"preview": "outliner.png",
67
"tags": ["extension", "panel"],
78
"authors": [
89
{

outliner/outliner.png

56.8 KB

pastel-dark/mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"id": "ed48c585-4a0d-4756-a3e6-9ae662732dac",
44
"version": "0.2.0",
55
"description": "a smooth-transition true dark theme with a hint of pastel.",
6-
"preview": "preview.png",
6+
"preview": "pastel-dark.png",
77
"tags": ["theme", "dark"],
88
"authors": [
99
{
File renamed without changes.

pinky-boom/mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"id": "b5f43232-391b-415a-9099-4334dc6c7b55",
44
"version": "0.2.0",
55
"description": "pinkify your life.",
6-
"preview": "preview.png",
6+
"preview": "pinky-boom.png",
77
"tags": ["theme", "light"],
88
"authors": [
99
{
File renamed without changes.

playful-purple/mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"id": "ae7862a9-5dbe-4f2c-9931-940f3ba5015d",
44
"version": "0.2.0",
55
"description": "a purple-shaded theme with bright highlights.",
6-
"preview": "preview.png",
6+
"preview": "playful-purple.png",
77
"tags": ["theme", "dark"],
88
"authors": [
99
{
File renamed without changes.

quick-note/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "5d7c1677-6f6d-4fb5-8d6f-5067bcd0e24c",
44
"version": "0.1.0",
55
"description": "adds a hotkey & a button in the bottom right corner to jump to a new page in a notes database (target database id must be set).",
6+
"preview": "quick-note.png",
67
"tags": ["integration", "shortcut"],
78
"authors": [
89
{

quick-note/quick-note.png

6.14 KB

right-to-left/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "b28ee2b9-4d34-4e36-be8a-ab5be3d79f51",
44
"version": "1.5.0",
55
"description": "enables auto rtl/ltr text direction detection.",
6+
"preview": "right-to-left.jpg",
67
"tags": ["extension", "usability"],
78
"authors": [
89
{

right-to-left/right-to-left.jpg

20 KB

scroll-to-top/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "0a958f5a-17c5-48b5-8713-16190cae1959",
44
"version": "0.3.0",
55
"description": "adds an arrow in the bottom right corner to scroll back to the top of a page.",
6+
"preview": "scroll-to-top.png",
67
"tags": ["extension", "shortcut"],
78
"authors": [
89
{

scroll-to-top/scroll-to-top.png

7.39 KB

simpler-databases/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "752933b5-1258-44e3-b49a-61b4885f8bda",
44
"version": "0.2.0",
55
"description": "adds a menu to inline databases to toggle ui elements.",
6+
"preview": "simpler-databases.jpg",
67
"tags": ["extension", "layout"],
78
"authors": [
89
{
36.9 KB

topbar-icons/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "e0700ce3-a9ae-45f5-92e5-610ded0e348d",
44
"version": "0.3.0",
55
"description": "choose between text or icons for the topbar buttons.",
6+
"preview": "topbar-icons.jpg",
67
"tags": ["extension", "customisation"],
78
"authors": [
89
{

topbar-icons/topbar-icons.jpg

2.19 KB

truncated-titles/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "1794c0bd-7b96-46ad-aa0b-fc4bd76fc7fb",
44
"version": "0.2.0",
55
"description": "see the full text of a truncated title on hover.",
6+
"preview": "truncated-titles.jpg",
67
"tags": ["extension", "layout"],
78
"authors": [
89
{

truncated-titles/truncated-titles.jpg

12.4 KB

weekly-view/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "4c7acaea-6596-4590-85e5-8ac5a1455e8f",
44
"version": "0.6.0",
55
"description": "calendar views named \"weekly\" will show only the current week.",
6+
"preview": "weekly-view.jpg",
67
"tags": ["extension", "layout"],
78
"authors": [
89
{

weekly-view/weekly-view.jpg

24.9 KB

word-counter/mod.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"id": "b99deb52-6955-43d2-a53b-a31540cd19a5",
44
"version": "0.3.0",
55
"description": "view word/character/sentence/block count & speaking/reading times in the side panel.",
6+
"preview": "word-counter.jpg",
67
"tags": ["extension", "panel"],
78
"authors": [
89
{

word-counter/word-counter.jpg

96.5 KB

0 commit comments

Comments
 (0)