From bb113e7c8a63f90fe2f2d97d7a57c879f63db047 Mon Sep 17 00:00:00 2001 From: Mauro Balades Date: Sun, 25 Aug 2024 20:57:39 +0200 Subject: [PATCH] feat: Add version to theme.json files --- scripts/__add-missing-versions.py | 18 ++++++++++++++++++ scripts/rebuild-themes.py | 9 --------- scripts/submit-theme.py | 3 ++- themes.json | 16 ++++++++-------- .../theme.json | 12 +++++++++++- .../theme.json | 12 +++++++++++- .../theme.json | 13 ++++++++++++- .../theme.json | 13 ++++++++++++- .../theme.json | 12 +++++++++++- .../theme.json | 12 +++++++++++- .../theme.json | 12 +++++++++++- .../theme.json | 12 +++++++++++- .../theme.json | 13 ++++++++++++- .../theme.json | 12 +++++++++++- .../theme.json | 12 +++++++++++- .../theme.json | 12 +++++++++++- .../theme.json | 13 ++++++++++++- .../theme.json | 12 +++++++++++- .../theme.json | 12 +++++++++++- 19 files changed, 197 insertions(+), 33 deletions(-) create mode 100644 scripts/__add-missing-versions.py diff --git a/scripts/__add-missing-versions.py b/scripts/__add-missing-versions.py new file mode 100644 index 00000000..27fed09b --- /dev/null +++ b/scripts/__add-missing-versions.py @@ -0,0 +1,18 @@ +import os +import json + +if __name__ == "__main__": + for themeId in os.listdir("themes"): + themeFolder = os.path.join("themes", themeId) + if not os.path.isdir(themeFolder): + continue + themeDataFile = os.path.join(themeFolder, "theme.json") + if not os.path.exists(themeDataFile): + continue + with open(themeDataFile, "r") as f: + themeData = json.load(f) + if "version" not in themeData: + themeData["version"] = "1.0.0" + with open(themeDataFile, "w") as f: + json.dump(themeData, f, indent=4) + print(f"Added version to theme: {themeId}") diff --git a/scripts/rebuild-themes.py b/scripts/rebuild-themes.py index 771229dd..131ea398 100644 --- a/scripts/rebuild-themes.py +++ b/scripts/rebuild-themes.py @@ -56,16 +56,7 @@ def main(): if 'isDarkMode' in colors: theme_data['isDarkMode'] = colors['isDarkMode'] theme_data['isColorTheme'] = True - past_version = None - if theme in themes_data: - past_version = themes_data[theme].get('version', None) themes_data[theme] = theme_data - if past_version is not None: - print(f" Found past version: {past_version}") - themes_data[theme]['version'] = past_version - else: - print(f" No past version found, setting to 1.0.0") - themes_data[theme]['version'] = "1.0.0" with open(THEMES_DATA_FILE, 'w') as f: json.dump(themes_data, f, indent=4) del themes_data diff --git a/scripts/submit-theme.py b/scripts/submit-theme.py index 1e4b0278..58f44e6e 100644 --- a/scripts/submit-theme.py +++ b/scripts/submit-theme.py @@ -165,7 +165,8 @@ Just joking, you can do whatever you want. You're the boss. 'style': get_static_asset(theme_id, STYLES_FILE), 'readme': get_static_asset(theme_id, README_FILE), 'image': get_static_asset(theme_id, IMAGE_FILE), - 'author': author + 'author': author, + 'version': '1.0.0', } os.makedirs(f"themes/{theme_id}") diff --git a/themes.json b/themes.json index 81c7d431..5aa7e0f7 100644 --- a/themes.json +++ b/themes.json @@ -31,9 +31,9 @@ "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ef16716a-58dc-42d4-99f8-b1667d32247d/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ef16716a-58dc-42d4-99f8-b1667d32247d/image.png", "author": "thejournalwriter", + "version": "1.0.0", "isDarkMode": true, - "isColorTheme": true, - "version": "1.0.0" + "isColorTheme": true }, "ab9b529c-63d6-48c0-a59a-4a407c5c3129": { "id": "ab9b529c-63d6-48c0-a59a-4a407c5c3129", @@ -102,9 +102,9 @@ "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/17f70712-4530-42d0-ba0f-fa25bcbf2ddc/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/17f70712-4530-42d0-ba0f-fa25bcbf2ddc/image.png", "author": "bdsqqq", + "version": "1.0.0", "isDarkMode": true, - "isColorTheme": true, - "version": "1.0.0" + "isColorTheme": true }, "053a3ffa-9233-4554-88f3-076e6a6ebb43": { "id": "053a3ffa-9233-4554-88f3-076e6a6ebb43", @@ -126,9 +126,9 @@ "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ecda11ae-d3fd-4052-8881-303b2504e3ce/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ecda11ae-d3fd-4052-8881-303b2504e3ce/image.png", "author": "Blaster4385", + "version": "1.0.0", "isDarkMode": true, - "isColorTheme": true, - "version": "1.0.0" + "isColorTheme": true }, "680424a8-a818-406b-98c5-7726214e2a9f": { "id": "680424a8-a818-406b-98c5-7726214e2a9f", @@ -161,9 +161,9 @@ "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e3eec307-7c64-4cbd-a0c5-3447cd45a840/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e3eec307-7c64-4cbd-a0c5-3447cd45a840/image.png", "author": "mauro-balades", + "version": "1.0.0", "isDarkMode": true, - "isColorTheme": true, - "version": "1.0.0" + "isColorTheme": true }, "c6813222-6571-4ba6-8faf-58f3343324f6": { "id": "c6813222-6571-4ba6-8faf-58f3343324f6", diff --git a/themes/053a3ffa-9233-4554-88f3-076e6a6ebb43/theme.json b/themes/053a3ffa-9233-4554-88f3-076e6a6ebb43/theme.json index ae85cfa6..c6652663 100644 --- a/themes/053a3ffa-9233-4554-88f3-076e6a6ebb43/theme.json +++ b/themes/053a3ffa-9233-4554-88f3-076e6a6ebb43/theme.json @@ -1 +1,11 @@ -{"id": "053a3ffa-9233-4554-88f3-076e6a6ebb43", "name": "Hide tab mute", "description": "Hides the mute/unmute button when the sidebar is collapsed to make clicking on tabs easier.", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/053a3ffa-9233-4554-88f3-076e6a6ebb43/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/053a3ffa-9233-4554-88f3-076e6a6ebb43/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/053a3ffa-9233-4554-88f3-076e6a6ebb43/image.png", "author": "Tc-001"} \ No newline at end of file +{ + "id": "053a3ffa-9233-4554-88f3-076e6a6ebb43", + "name": "Hide tab mute", + "description": "Hides the mute/unmute button when the sidebar is collapsed to make clicking on tabs easier.", + "homepage": "", + "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/053a3ffa-9233-4554-88f3-076e6a6ebb43/chrome.css", + "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/053a3ffa-9233-4554-88f3-076e6a6ebb43/readme.md", + "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/053a3ffa-9233-4554-88f3-076e6a6ebb43/image.png", + "author": "Tc-001", + "version": "1.0.0" +} \ No newline at end of file diff --git a/themes/17f70712-4530-42d0-ba0f-fa25bcbf2ddc/theme.json b/themes/17f70712-4530-42d0-ba0f-fa25bcbf2ddc/theme.json index 2cfe46be..f272e822 100644 --- a/themes/17f70712-4530-42d0-ba0f-fa25bcbf2ddc/theme.json +++ b/themes/17f70712-4530-42d0-ba0f-fa25bcbf2ddc/theme.json @@ -1 +1,11 @@ -{"id": "17f70712-4530-42d0-ba0f-fa25bcbf2ddc", "name": "Vesper Dark", "description": "P\u0336e\u0336p\u0336p\u0336e\u0336r\u0336m\u0336i\u0336n\u0336t\u0336 and orange flavored dark theme for V\u0336S\u0336C\u0336o\u0336d\u0336e\u0336 Zen browser.", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/17f70712-4530-42d0-ba0f-fa25bcbf2ddc/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/17f70712-4530-42d0-ba0f-fa25bcbf2ddc/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/17f70712-4530-42d0-ba0f-fa25bcbf2ddc/image.png", "author": "bdsqqq"} \ No newline at end of file +{ + "id": "17f70712-4530-42d0-ba0f-fa25bcbf2ddc", + "name": "Vesper Dark", + "description": "P\u0336e\u0336p\u0336p\u0336e\u0336r\u0336m\u0336i\u0336n\u0336t\u0336 and orange flavored dark theme for V\u0336S\u0336C\u0336o\u0336d\u0336e\u0336 Zen browser.", + "homepage": "", + "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/17f70712-4530-42d0-ba0f-fa25bcbf2ddc/chrome.css", + "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/17f70712-4530-42d0-ba0f-fa25bcbf2ddc/readme.md", + "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/17f70712-4530-42d0-ba0f-fa25bcbf2ddc/image.png", + "author": "bdsqqq", + "version": "1.0.0" +} \ No newline at end of file diff --git a/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/theme.json b/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/theme.json index 57327917..b2276e04 100644 --- a/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/theme.json +++ b/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/theme.json @@ -1 +1,12 @@ -{"id": "58649066-2b6f-4a5b-af6d-c3d21d16fc00", "name": "Private Mode Highlighting", "description": "This theme adds a purple gradient and icon to the main toolbar of any private browsing window.", "homepage": "https://github.com/danm36/zen-browser-private-browsing-toolbar-highlighting", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/image.png", "author": "danm36", "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/preferences.json"} \ No newline at end of file +{ + "id": "58649066-2b6f-4a5b-af6d-c3d21d16fc00", + "name": "Private Mode Highlighting", + "description": "This theme adds a purple gradient and icon to the main toolbar of any private browsing window.", + "homepage": "https://github.com/danm36/zen-browser-private-browsing-toolbar-highlighting", + "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/chrome.css", + "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/readme.md", + "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/image.png", + "author": "danm36", + "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/preferences.json", + "version": "1.0.0" +} \ No newline at end of file diff --git a/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/theme.json b/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/theme.json index f2e3da3d..abc0a518 100644 --- a/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/theme.json +++ b/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/theme.json @@ -1 +1,12 @@ -{"id": "5a007026-0801-4a5d-9740-f17dc1c3ff21", "name": "Hide Window Buttons", "description": "Hide the minimize, maximize, and close window buttons", "homepage": "https://github.com/n7itro/Zen-Themes", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/image.png", "author": "n7itro", "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/preferences.json"} \ No newline at end of file +{ + "id": "5a007026-0801-4a5d-9740-f17dc1c3ff21", + "name": "Hide Window Buttons", + "description": "Hide the minimize, maximize, and close window buttons", + "homepage": "https://github.com/n7itro/Zen-Themes", + "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/chrome.css", + "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/readme.md", + "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/image.png", + "author": "n7itro", + "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/preferences.json", + "version": "1.0.0" +} \ No newline at end of file diff --git a/themes/5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c/theme.json b/themes/5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c/theme.json index 8fe4a11f..a9e599d3 100644 --- a/themes/5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c/theme.json +++ b/themes/5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c/theme.json @@ -1 +1,11 @@ -{"id": "5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c", "name": "Uniform Workspaces Button", "description": "Make the workspaces button consistent with the other sidebar buttons, while remaining unique.", "homepage": "https://github.com/andrewbellucci/zen-uniform-workspaces-button", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c/image.png", "author": "andrewbellucci"} \ No newline at end of file +{ + "id": "5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c", + "name": "Uniform Workspaces Button", + "description": "Make the workspaces button consistent with the other sidebar buttons, while remaining unique.", + "homepage": "https://github.com/andrewbellucci/zen-uniform-workspaces-button", + "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c/chrome.css", + "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c/readme.md", + "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c/image.png", + "author": "andrewbellucci", + "version": "1.0.0" +} \ No newline at end of file diff --git a/themes/64cdc40f-2366-4b5b-8bad-d0524682595e/theme.json b/themes/64cdc40f-2366-4b5b-8bad-d0524682595e/theme.json index 3abb0942..ef1064a6 100644 --- a/themes/64cdc40f-2366-4b5b-8bad-d0524682595e/theme.json +++ b/themes/64cdc40f-2366-4b5b-8bad-d0524682595e/theme.json @@ -1 +1,11 @@ -{"id": "64cdc40f-2366-4b5b-8bad-d0524682595e", "name": "Allow Toolbar Theming", "description": "This allows you to use Firefox themes to customize your toolbar", "homepage": "https://github.com/ch4og/zenbrowser-themes/tree/main/Allow%20Toolbar%20Theming", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/64cdc40f-2366-4b5b-8bad-d0524682595e/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/64cdc40f-2366-4b5b-8bad-d0524682595e/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/64cdc40f-2366-4b5b-8bad-d0524682595e/image.png", "author": "ch4og"} \ No newline at end of file +{ + "id": "64cdc40f-2366-4b5b-8bad-d0524682595e", + "name": "Allow Toolbar Theming", + "description": "This allows you to use Firefox themes to customize your toolbar", + "homepage": "https://github.com/ch4og/zenbrowser-themes/tree/main/Allow%20Toolbar%20Theming", + "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/64cdc40f-2366-4b5b-8bad-d0524682595e/chrome.css", + "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/64cdc40f-2366-4b5b-8bad-d0524682595e/readme.md", + "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/64cdc40f-2366-4b5b-8bad-d0524682595e/image.png", + "author": "ch4og", + "version": "1.0.0" +} \ No newline at end of file diff --git a/themes/680424a8-a818-406b-98c5-7726214e2a9f/theme.json b/themes/680424a8-a818-406b-98c5-7726214e2a9f/theme.json index 0d7e6929..36b39a66 100644 --- a/themes/680424a8-a818-406b-98c5-7726214e2a9f/theme.json +++ b/themes/680424a8-a818-406b-98c5-7726214e2a9f/theme.json @@ -1 +1,11 @@ -{"id": "680424a8-a818-406b-98c5-7726214e2a9f", "name": "Remove Browser Padding", "description": "Remove the right and bottom paddings of the browser views on zen!", "homepage": "https://github.com/zen-browser/theme-components", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/680424a8-a818-406b-98c5-7726214e2a9f/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/680424a8-a818-406b-98c5-7726214e2a9f/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/680424a8-a818-406b-98c5-7726214e2a9f/image.png", "author": "mauro-balades"} \ No newline at end of file +{ + "id": "680424a8-a818-406b-98c5-7726214e2a9f", + "name": "Remove Browser Padding", + "description": "Remove the right and bottom paddings of the browser views on zen!", + "homepage": "https://github.com/zen-browser/theme-components", + "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/680424a8-a818-406b-98c5-7726214e2a9f/chrome.css", + "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/680424a8-a818-406b-98c5-7726214e2a9f/readme.md", + "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/680424a8-a818-406b-98c5-7726214e2a9f/image.png", + "author": "mauro-balades", + "version": "1.0.0" +} \ No newline at end of file diff --git a/themes/83a641f7-eca9-4c0f-91af-45627bef0539/theme.json b/themes/83a641f7-eca9-4c0f-91af-45627bef0539/theme.json index c57b2c56..3bb3199b 100644 --- a/themes/83a641f7-eca9-4c0f-91af-45627bef0539/theme.json +++ b/themes/83a641f7-eca9-4c0f-91af-45627bef0539/theme.json @@ -1 +1,11 @@ -{"id": "83a641f7-eca9-4c0f-91af-45627bef0539", "name": "Floating URLbar", "description": "Levitate the URL bar when focusing on it, with a blurred background.", "homepage": "https://github.com/zen-browser/theme-components", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/83a641f7-eca9-4c0f-91af-45627bef0539/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/83a641f7-eca9-4c0f-91af-45627bef0539/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/83a641f7-eca9-4c0f-91af-45627bef0539/image.png", "author": "mauro-balades"} \ No newline at end of file +{ + "id": "83a641f7-eca9-4c0f-91af-45627bef0539", + "name": "Floating URLbar", + "description": "Levitate the URL bar when focusing on it, with a blurred background.", + "homepage": "https://github.com/zen-browser/theme-components", + "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/83a641f7-eca9-4c0f-91af-45627bef0539/chrome.css", + "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/83a641f7-eca9-4c0f-91af-45627bef0539/readme.md", + "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/83a641f7-eca9-4c0f-91af-45627bef0539/image.png", + "author": "mauro-balades", + "version": "1.0.0" +} \ No newline at end of file diff --git a/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/theme.json b/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/theme.json index 07917ad8..589701c3 100644 --- a/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/theme.json +++ b/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/theme.json @@ -1 +1,12 @@ -{"id": "ab9b529c-63d6-48c0-a59a-4a407c5c3129", "name": "Minimal sidebar", "description": "With this Zen theme, you can remove the buttons from the sidebar and make more space for your tabs", "homepage": "https://github.com/Venca321/Zen-Minimal-Sidebar-Theme", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/image.png", "author": "Venca321", "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/preferences.json"} \ No newline at end of file +{ + "id": "ab9b529c-63d6-48c0-a59a-4a407c5c3129", + "name": "Minimal sidebar", + "description": "With this Zen theme, you can remove the buttons from the sidebar and make more space for your tabs", + "homepage": "https://github.com/Venca321/Zen-Minimal-Sidebar-Theme", + "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/chrome.css", + "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/readme.md", + "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/image.png", + "author": "Venca321", + "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/preferences.json", + "version": "1.0.0" +} \ No newline at end of file diff --git a/themes/c6813222-6571-4ba6-8faf-58f3343324f6/theme.json b/themes/c6813222-6571-4ba6-8faf-58f3343324f6/theme.json index 47ff6a18..0b02c400 100644 --- a/themes/c6813222-6571-4ba6-8faf-58f3343324f6/theme.json +++ b/themes/c6813222-6571-4ba6-8faf-58f3343324f6/theme.json @@ -1 +1,11 @@ -{"id": "c6813222-6571-4ba6-8faf-58f3343324f6", "name": "Disable Rounded Corners", "description": "Disable Rounded Corners from Web View.", "homepage": "https://github.com/gunir/desktop/tree/themes/themes", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c6813222-6571-4ba6-8faf-58f3343324f6/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c6813222-6571-4ba6-8faf-58f3343324f6/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c6813222-6571-4ba6-8faf-58f3343324f6/image.png", "author": "gunir"} \ No newline at end of file +{ + "id": "c6813222-6571-4ba6-8faf-58f3343324f6", + "name": "Disable Rounded Corners", + "description": "Disable Rounded Corners from Web View.", + "homepage": "https://github.com/gunir/desktop/tree/themes/themes", + "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c6813222-6571-4ba6-8faf-58f3343324f6/chrome.css", + "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c6813222-6571-4ba6-8faf-58f3343324f6/readme.md", + "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c6813222-6571-4ba6-8faf-58f3343324f6/image.png", + "author": "gunir", + "version": "1.0.0" +} \ No newline at end of file diff --git a/themes/cb15abdb-0514-4e09-8ce5-722cf1f4a20f/theme.json b/themes/cb15abdb-0514-4e09-8ce5-722cf1f4a20f/theme.json index 6435a827..708f0761 100644 --- a/themes/cb15abdb-0514-4e09-8ce5-722cf1f4a20f/theme.json +++ b/themes/cb15abdb-0514-4e09-8ce5-722cf1f4a20f/theme.json @@ -1 +1,11 @@ -{"id": "cb15abdb-0514-4e09-8ce5-722cf1f4a20f", "name": "Hide Extension Name", "description": "Hides the name of the extension on tabs loaded from the extension", "homepage": "https://github.com/ch4og/zenbrowser-themes/tree/main/Hide%20Extension%20Name", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/cb15abdb-0514-4e09-8ce5-722cf1f4a20f/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/cb15abdb-0514-4e09-8ce5-722cf1f4a20f/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/cb15abdb-0514-4e09-8ce5-722cf1f4a20f/image.png", "author": "ch4og"} \ No newline at end of file +{ + "id": "cb15abdb-0514-4e09-8ce5-722cf1f4a20f", + "name": "Hide Extension Name", + "description": "Hides the name of the extension on tabs loaded from the extension", + "homepage": "https://github.com/ch4og/zenbrowser-themes/tree/main/Hide%20Extension%20Name", + "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/cb15abdb-0514-4e09-8ce5-722cf1f4a20f/chrome.css", + "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/cb15abdb-0514-4e09-8ce5-722cf1f4a20f/readme.md", + "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/cb15abdb-0514-4e09-8ce5-722cf1f4a20f/image.png", + "author": "ch4og", + "version": "1.0.0" +} \ No newline at end of file diff --git a/themes/e3eec307-7c64-4cbd-a0c5-3447cd45a840/theme.json b/themes/e3eec307-7c64-4cbd-a0c5-3447cd45a840/theme.json index 76b89c67..6ff9b52c 100644 --- a/themes/e3eec307-7c64-4cbd-a0c5-3447cd45a840/theme.json +++ b/themes/e3eec307-7c64-4cbd-a0c5-3447cd45a840/theme.json @@ -1 +1,11 @@ -{"id": "e3eec307-7c64-4cbd-a0c5-3447cd45a840", "name": "Catppuccin", "description": "Dive into Catppuccin's, unique pastel color theme for Zen!", "homepage": "https://catppuccin.com/", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e3eec307-7c64-4cbd-a0c5-3447cd45a840/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e3eec307-7c64-4cbd-a0c5-3447cd45a840/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e3eec307-7c64-4cbd-a0c5-3447cd45a840/image.png", "author": "mauro-balades"} \ No newline at end of file +{ + "id": "e3eec307-7c64-4cbd-a0c5-3447cd45a840", + "name": "Catppuccin", + "description": "Dive into Catppuccin's, unique pastel color theme for Zen!", + "homepage": "https://catppuccin.com/", + "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e3eec307-7c64-4cbd-a0c5-3447cd45a840/chrome.css", + "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e3eec307-7c64-4cbd-a0c5-3447cd45a840/readme.md", + "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e3eec307-7c64-4cbd-a0c5-3447cd45a840/image.png", + "author": "mauro-balades", + "version": "1.0.0" +} \ No newline at end of file diff --git a/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/theme.json b/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/theme.json index 17ed1a45..d6b0b029 100644 --- a/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/theme.json +++ b/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/theme.json @@ -1 +1,12 @@ -{"id": "ea1a5ace-f698-4b45-ab88-6e8bd3a563f0", "name": "Bookmark Toolbar Tweaks", "description": "Center bookmarks, hide the icons!", "homepage": "https://github.com/n7itro/Zen-Themes/", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/image.png", "author": "n7itro", "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/preferences.json"} \ No newline at end of file +{ + "id": "ea1a5ace-f698-4b45-ab88-6e8bd3a563f0", + "name": "Bookmark Toolbar Tweaks", + "description": "Center bookmarks, hide the icons!", + "homepage": "https://github.com/n7itro/Zen-Themes/", + "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/chrome.css", + "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/readme.md", + "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/image.png", + "author": "n7itro", + "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/preferences.json", + "version": "1.0.0" +} \ No newline at end of file diff --git a/themes/ecda11ae-d3fd-4052-8881-303b2504e3ce/theme.json b/themes/ecda11ae-d3fd-4052-8881-303b2504e3ce/theme.json index ba8fa534..e5ff954a 100644 --- a/themes/ecda11ae-d3fd-4052-8881-303b2504e3ce/theme.json +++ b/themes/ecda11ae-d3fd-4052-8881-303b2504e3ce/theme.json @@ -1 +1,11 @@ -{"id": "ecda11ae-d3fd-4052-8881-303b2504e3ce", "name": "Gruvbox", "description": "A gruvbox based theme", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ecda11ae-d3fd-4052-8881-303b2504e3ce/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ecda11ae-d3fd-4052-8881-303b2504e3ce/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ecda11ae-d3fd-4052-8881-303b2504e3ce/image.png", "author": "Blaster4385"} \ No newline at end of file +{ + "id": "ecda11ae-d3fd-4052-8881-303b2504e3ce", + "name": "Gruvbox", + "description": "A gruvbox based theme", + "homepage": "", + "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ecda11ae-d3fd-4052-8881-303b2504e3ce/chrome.css", + "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ecda11ae-d3fd-4052-8881-303b2504e3ce/readme.md", + "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ecda11ae-d3fd-4052-8881-303b2504e3ce/image.png", + "author": "Blaster4385", + "version": "1.0.0" +} \ No newline at end of file diff --git a/themes/ef16716a-58dc-42d4-99f8-b1667d32247d/theme.json b/themes/ef16716a-58dc-42d4-99f8-b1667d32247d/theme.json index fa33c9c0..c3714ad5 100644 --- a/themes/ef16716a-58dc-42d4-99f8-b1667d32247d/theme.json +++ b/themes/ef16716a-58dc-42d4-99f8-b1667d32247d/theme.json @@ -1 +1,11 @@ -{"id": "ef16716a-58dc-42d4-99f8-b1667d32247d", "name": "Formula 1", "description": "Embrace the simplicity of black and red", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ef16716a-58dc-42d4-99f8-b1667d32247d/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ef16716a-58dc-42d4-99f8-b1667d32247d/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ef16716a-58dc-42d4-99f8-b1667d32247d/image.png", "author": "thejournalwriter"} +{ + "id": "ef16716a-58dc-42d4-99f8-b1667d32247d", + "name": "Formula 1", + "description": "Embrace the simplicity of black and red", + "homepage": "", + "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ef16716a-58dc-42d4-99f8-b1667d32247d/chrome.css", + "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ef16716a-58dc-42d4-99f8-b1667d32247d/readme.md", + "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ef16716a-58dc-42d4-99f8-b1667d32247d/image.png", + "author": "thejournalwriter", + "version": "1.0.0" +} \ No newline at end of file