mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-07 17:05:31 +02:00
feat: Add version to theme.json files
This commit is contained in:
parent
a23e634a6e
commit
bb113e7c8a
19 changed files with 197 additions and 33 deletions
18
scripts/__add-missing-versions.py
Normal file
18
scripts/__add-missing-versions.py
Normal file
|
@ -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}")
|
|
@ -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
|
||||
|
|
|
@ -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}")
|
||||
|
|
16
themes.json
16
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",
|
||||
|
|
|
@ -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"}
|
||||
{
|
||||
"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"
|
||||
}
|
|
@ -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"}
|
||||
{
|
||||
"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"
|
||||
}
|
|
@ -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"}
|
||||
{
|
||||
"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"
|
||||
}
|
|
@ -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"}
|
||||
{
|
||||
"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"
|
||||
}
|
|
@ -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"}
|
||||
{
|
||||
"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"
|
||||
}
|
|
@ -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"}
|
||||
{
|
||||
"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"
|
||||
}
|
|
@ -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"}
|
||||
{
|
||||
"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"
|
||||
}
|
|
@ -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"}
|
||||
{
|
||||
"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"
|
||||
}
|
|
@ -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"}
|
||||
{
|
||||
"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"
|
||||
}
|
|
@ -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"}
|
||||
{
|
||||
"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"
|
||||
}
|
|
@ -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"}
|
||||
{
|
||||
"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"
|
||||
}
|
|
@ -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"}
|
||||
{
|
||||
"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"
|
||||
}
|
|
@ -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"}
|
||||
{
|
||||
"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"
|
||||
}
|
|
@ -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"}
|
||||
{
|
||||
"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"
|
||||
}
|
|
@ -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"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue