mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-07 08:55:31 +02:00
Added tags, createdAt, updatedAt properties (#561)
* add new properties on submit theme * New GitHub Action for updating `updatedAt` * change rebuild_themes.py to update tags for color themes * Adding GitHub Action for updating all theme.json files (temporary) * Applying corrected themes.json file * fix: forgot to commit changes * Update theme.json metadata * Deleting actions not needed for merge --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
1d26f953a6
commit
ab50f51b95
63 changed files with 1240 additions and 64 deletions
57
.github/workflows/update-theme-date.yml
vendored
Normal file
57
.github/workflows/update-theme-date.yml
vendored
Normal file
|
@ -0,0 +1,57 @@
|
|||
name: Update Theme Timestamps
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [closed]
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
update-timestamp:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 2
|
||||
|
||||
- name: Get changes
|
||||
run: git diff --name-only HEAD^1 HEAD
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.x'
|
||||
|
||||
- name: Detect changed themes
|
||||
id: get_changes
|
||||
run: |
|
||||
changed_themes=$(git diff --name-only HEAD^1 HEAD | grep '^themes/' | awk -F/ '{print $2}' | sort -u)
|
||||
echo "CHANGED_THEMES=$changed_themes" >> $GITHUB_ENV
|
||||
|
||||
- name: Setup python modules
|
||||
run: |
|
||||
pip3 install requests
|
||||
|
||||
- name: Setup Git
|
||||
run: |
|
||||
git config --global user.name "github-actions[bot]"
|
||||
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
||||
|
||||
- name: Update theme date
|
||||
if: env.CHANGED_THEMES != ''
|
||||
run: |
|
||||
for theme in $CHANGED_THEMES; do
|
||||
python3 scripts/update_theme_date.py "themes/$theme"
|
||||
done
|
||||
|
||||
- name: Commit changes
|
||||
if: env.CHANGED_THEMES != ''
|
||||
run: |
|
||||
for theme in $CHANGED_THEMES; do
|
||||
git add "themes/$theme/theme.json"
|
||||
done
|
||||
git commit -m "Update theme.json for $CHANGED_THEMES"
|
||||
git push
|
|
@ -72,11 +72,16 @@ def main():
|
|||
theme_colors_output = os.path.join(theme_folder, "chrome.css")
|
||||
colors = write_colors(theme_colors_file, theme_colors_output)
|
||||
|
||||
if "isDarkMode" in colors:
|
||||
theme_data["isDarkMode"] = colors["isDarkMode"]
|
||||
if "tags" not in theme_data:
|
||||
theme_data["tags"] = []
|
||||
|
||||
theme_data["isColorTheme"] = True
|
||||
# Add 'color theme' tag if colors.json is present
|
||||
theme_data["tags"].append("color theme")
|
||||
|
||||
# Add 'dark' tag if colors.json specifies dark mode
|
||||
if "isDarkMode" in colors and colors["isDarkMode"]:
|
||||
theme_data["tags"].append("dark")
|
||||
|
||||
themes_data[theme] = theme_data
|
||||
|
||||
with open(THEMES_DATA_FILE, "w") as f:
|
||||
|
@ -106,4 +111,4 @@ def main():
|
|||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
main()
|
|
@ -2,6 +2,7 @@ import os
|
|||
import re
|
||||
import argparse
|
||||
import json
|
||||
import time
|
||||
import uuid
|
||||
import sys
|
||||
import requests
|
||||
|
@ -352,6 +353,9 @@ Just joking, you can do whatever you want. You're the boss.
|
|||
"image": get_static_asset(theme_id, IMAGE_FILE),
|
||||
"author": author,
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": time.strftime("%Y-%m-%d"),
|
||||
"updatedAt": time.strftime("%Y-%m-%d"),
|
||||
}
|
||||
|
||||
os.makedirs(f"themes/{theme_id}")
|
||||
|
@ -388,4 +392,4 @@ Just joking, you can do whatever you want. You're the boss.
|
|||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
main()
|
41
scripts/update_theme_date.py
Normal file
41
scripts/update_theme_date.py
Normal file
|
@ -0,0 +1,41 @@
|
|||
import json
|
||||
import time
|
||||
import os
|
||||
import sys
|
||||
|
||||
|
||||
def panic(message: str):
|
||||
print(message, file=sys.stderr)
|
||||
exit(1)
|
||||
|
||||
|
||||
def update_theme_date(theme_path):
|
||||
theme_file = os.path.join(theme_path, "theme.json")
|
||||
|
||||
if not os.path.exists(theme_file):
|
||||
panic(f"{theme_file} not found.")
|
||||
|
||||
# Load the theme JSON data
|
||||
with open(theme_file, "r") as f:
|
||||
try:
|
||||
theme_data = json.load(f)
|
||||
except json.JSONDecodeError as e:
|
||||
panic("Error reading theme.json: " + str(e))
|
||||
|
||||
# Update the `updatedAt` field to the current date
|
||||
theme_data["updatedAt"] = time.strftime("%Y-%m-%d")
|
||||
|
||||
# Write the changes back to theme.json
|
||||
with open(theme_file, "w") as f:
|
||||
json.dump(theme_data, f, indent=2)
|
||||
|
||||
print(f"Updated `updatedAt` for {theme_path} to {theme_data['updatedAt']}")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
# Make sure the script is run with the theme path as an argument
|
||||
if len(sys.argv) != 2:
|
||||
panic("Usage: update_theme_date.py <path_to_theme_directory>")
|
||||
|
||||
theme_path = sys.argv[1]
|
||||
update_theme_date(theme_path)
|
846
themes.json
846
themes.json
File diff suppressed because one or more lines are too long
|
@ -7,5 +7,10 @@
|
|||
"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.1"
|
||||
"version": "1.0.1",
|
||||
"tags": [
|
||||
"tabs"
|
||||
],
|
||||
"createdAt": "2024-08-21",
|
||||
"updatedAt": "2024-09-18"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/11d685eb-4515-4045-864b-0a50589f8a4d/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/11d685eb-4515-4045-864b-0a50589f8a4d/image.png",
|
||||
"author": "antonsizikov",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-10-06",
|
||||
"updatedAt": "2024-10-06"
|
||||
}
|
|
@ -7,5 +7,13 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/17f70712-4530-42d0-ba0f-fa25bcbf2ddc/readme.md",
|
||||
"image": "https://i.imgur.com/SmQiVq7.png",
|
||||
"author": "bdsqqq",
|
||||
"version": "1.0.1"
|
||||
"version": "1.0.1",
|
||||
"isDarkMode": true,
|
||||
"isColorTheme": true,
|
||||
"tags": [
|
||||
"color scheme",
|
||||
"dark"
|
||||
],
|
||||
"createdAt": "2024-08-22",
|
||||
"updatedAt": "2024-09-03"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/180d9426-a020-4bd7-98ec-63f957291119/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/180d9426-a020-4bd7-98ec-63f957291119/image.png",
|
||||
"author": "DaitiDay",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-18",
|
||||
"updatedAt": "2024-09-18"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1e86cf37-a127-4f24-b919-d265b5ce29a0/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1e86cf37-a127-4f24-b919-d265b5ce29a0/image.png",
|
||||
"author": "KiKaraage",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-03",
|
||||
"updatedAt": "2024-09-03"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1e9f3101-210b-4ff5-8830-434e4919100d/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1e9f3101-210b-4ff5-8830-434e4919100d/image.png",
|
||||
"author": "qtchaos",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-28",
|
||||
"updatedAt": "2024-08-28"
|
||||
}
|
|
@ -7,5 +7,10 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/2e3369c7-e450-46ba-8794-75ccb0de5e48/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/2e3369c7-e450-46ba-8794-75ccb0de5e48/image.png",
|
||||
"author": "benstone326",
|
||||
"version": "1.2.1"
|
||||
"version": "1.2.1",
|
||||
"tags": [
|
||||
"tabs"
|
||||
],
|
||||
"createdAt": "2024-08-28",
|
||||
"updatedAt": "2024-10-03"
|
||||
}
|
|
@ -8,5 +8,10 @@
|
|||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/35f24f2c-b211-43e2-9fe4-2c3bc217d9f7/image.png",
|
||||
"author": "Tc-001",
|
||||
"version": "1.0.0",
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/35f24f2c-b211-43e2-9fe4-2c3bc217d9f7/preferences.json"
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/35f24f2c-b211-43e2-9fe4-2c3bc217d9f7/preferences.json",
|
||||
"tags": [
|
||||
"tabs"
|
||||
],
|
||||
"createdAt": "2024-08-28",
|
||||
"updatedAt": "2024-09-07"
|
||||
}
|
|
@ -8,5 +8,8 @@
|
|||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/39907934-59e9-4e42-89f0-a254d3c5e280/image.png",
|
||||
"author": "shanto",
|
||||
"version": "1.0.0",
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/39907934-59e9-4e42-89f0-a254d3c5e280/preferences.json"
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/39907934-59e9-4e42-89f0-a254d3c5e280/preferences.json",
|
||||
"tags": [],
|
||||
"createdAt": "2024-10-09",
|
||||
"updatedAt": "2024-10-09"
|
||||
}
|
|
@ -7,5 +7,10 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/3ff55ba7-4690-4f74-96a8-9e4416685e4e/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/3ff55ba7-4690-4f74-96a8-9e4416685e4e/image.png",
|
||||
"author": "ocean-mars",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [
|
||||
"tabs"
|
||||
],
|
||||
"createdAt": "2024-10-06",
|
||||
"updatedAt": "2024-10-06"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/46690a54-5eff-4141-8af8-9cd772ab6e2c/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/46690a54-5eff-4141-8af8-9cd772ab6e2c/image.png",
|
||||
"author": "Hypatech",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-25",
|
||||
"updatedAt": "2024-09-25"
|
||||
}
|
|
@ -7,5 +7,10 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/49dbaa98-06ee-42bd-9a8e-834babef7a41/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/49dbaa98-06ee-42bd-9a8e-834babef7a41/image.png",
|
||||
"author": "burnt0rice",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [
|
||||
"tabs"
|
||||
],
|
||||
"createdAt": "2024-08-31",
|
||||
"updatedAt": "2024-09-07"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/4ab93b88-151c-451b-a1b7-a1e0e28fa7f8/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/4ab93b88-151c-451b-a1b7-a1e0e28fa7f8/image.png",
|
||||
"author": "mally8",
|
||||
"version": "1.0.1"
|
||||
"version": "1.0.1",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-01",
|
||||
"updatedAt": "2024-09-07"
|
||||
}
|
|
@ -8,5 +8,8 @@
|
|||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/4ce2b68c-84f1-4296-b145-4e590ad7a19e/image.png",
|
||||
"author": "anaarkei",
|
||||
"version": "1.1.1",
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/4ce2b68c-84f1-4296-b145-4e590ad7a19e/preferences.json"
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/4ce2b68c-84f1-4296-b145-4e590ad7a19e/preferences.json",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-24",
|
||||
"updatedAt": "2024-09-30"
|
||||
}
|
|
@ -7,5 +7,13 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/56449583-f295-4f34-baf8-da70d3d156e7/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/56449583-f295-4f34-baf8-da70d3d156e7/image.png",
|
||||
"author": "mohvn",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"isDarkMode": true,
|
||||
"isColorTheme": true,
|
||||
"tags": [
|
||||
"color scheme",
|
||||
"dark"
|
||||
],
|
||||
"createdAt": "2024-09-09",
|
||||
"updatedAt": "2024-09-09"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/570afd9d-96fa-48b5-bad3-0c106757cce9/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/570afd9d-96fa-48b5-bad3-0c106757cce9/image.png",
|
||||
"author": "lingais",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-28",
|
||||
"updatedAt": "2024-08-28"
|
||||
}
|
|
@ -8,5 +8,8 @@
|
|||
"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.4"
|
||||
"version": "1.0.4",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-09",
|
||||
"updatedAt": "2024-09-25"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5941aefd-67b0-453d-9b62-9071a31cbb0d/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5941aefd-67b0-453d-9b62-9071a31cbb0d/image.png",
|
||||
"author": "n7itro",
|
||||
"version": "1.0.2"
|
||||
"version": "1.0.2",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-31",
|
||||
"updatedAt": "2024-10-01"
|
||||
}
|
|
@ -8,5 +8,8 @@
|
|||
"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"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-16",
|
||||
"updatedAt": "2024-08-22"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"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"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-24",
|
||||
"updatedAt": "2024-08-24"
|
||||
}
|
|
@ -7,5 +7,13 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5ca67725-1f43-4ff2-9fcf-0c59af71c73a/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5ca67725-1f43-4ff2-9fcf-0c59af71c73a/image.png",
|
||||
"author": "shaeriz",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"isDarkMode": true,
|
||||
"isColorTheme": true,
|
||||
"tags": [
|
||||
"color scheme",
|
||||
"dark"
|
||||
],
|
||||
"createdAt": "2024-08-31",
|
||||
"updatedAt": ""
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"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.2"
|
||||
"version": "1.0.2",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-23",
|
||||
"updatedAt": "2024-09-07"
|
||||
}
|
|
@ -8,5 +8,8 @@
|
|||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/67b12475-1c26-4d13-9156-297383ed8dbf/image.png",
|
||||
"author": "anaarkei",
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/67b12475-1c26-4d13-9156-297383ed8dbf/preferences.json",
|
||||
"version": "2.1.2"
|
||||
"version": "2.1.2",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-15",
|
||||
"updatedAt": "2024-09-30"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"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.2"
|
||||
"version": "1.0.2",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-17",
|
||||
"updatedAt": "2024-08-17"
|
||||
}
|
|
@ -8,5 +8,8 @@
|
|||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/6cd4bca9-f17d-4461-b554-844d69a4887c/image.png",
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/6cd4bca9-f17d-4461-b554-844d69a4887c/preferences.json",
|
||||
"author": "Dinno-DEV",
|
||||
"version": "1.0.2"
|
||||
"version": "1.0.2",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-19",
|
||||
"updatedAt": "2024-10-06"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/74c755b3-41a5-4f78-83cb-cd1e1e076bb6/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/74c755b3-41a5-4f78-83cb-cd1e1e076bb6/image.png",
|
||||
"author": "lindongbin",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-30",
|
||||
"updatedAt": "2024-08-30"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/753c7518-237d-480a-abfd-1f42a7eabacc/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/753c7518-237d-480a-abfd-1f42a7eabacc/image.png",
|
||||
"author": "Dinno-DEV",
|
||||
"version": "1.0.1"
|
||||
"version": "1.0.1",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-24",
|
||||
"updatedAt": "2024-09-25"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/80112b28-39e0-407c-8988-2290bc973b97/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/80112b28-39e0-407c-8988-2290bc973b97/image.png",
|
||||
"author": "KiKaraage",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-24",
|
||||
"updatedAt": "2024-09-24"
|
||||
}
|
|
@ -8,5 +8,8 @@
|
|||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/81fcd6b3-f014-4796-988f-6c3cb3874db8/image.png",
|
||||
"author": "KiKaraage",
|
||||
"version": "1.0.0",
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/81fcd6b3-f014-4796-988f-6c3cb3874db8/preferences.json"
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/81fcd6b3-f014-4796-988f-6c3cb3874db8/preferences.json",
|
||||
"tags": [],
|
||||
"createdAt": "2024-10-06",
|
||||
"updatedAt": "2024-10-06"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"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.5"
|
||||
"version": "1.0.5",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-15",
|
||||
"updatedAt": "2024-09-18"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/906c6915-5677-48ff-9bfc-096a02a72379/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/906c6915-5677-48ff-9bfc-096a02a72379/image.png",
|
||||
"author": "AmirhBeigi",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-10-06",
|
||||
"updatedAt": "2024-10-06"
|
||||
}
|
|
@ -8,5 +8,8 @@
|
|||
"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.1.0"
|
||||
"version": "1.1.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-23",
|
||||
"updatedAt": "2024-09-10"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/abc2d6d8-ea9c-4313-a99c-fb1e76e8b3e5/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/abc2d6d8-ea9c-4313-a99c-fb1e76e8b3e5/image.png",
|
||||
"author": "mohvn",
|
||||
"version": "1.0.1"
|
||||
"version": "1.0.1",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-03",
|
||||
"updatedAt": "2024-09-03"
|
||||
}
|
|
@ -8,5 +8,10 @@
|
|||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/image.png",
|
||||
"author": "JLBlk",
|
||||
"version": "1.3.5",
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/preferences.json"
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/preferences.json",
|
||||
"tags": [
|
||||
"tabs"
|
||||
],
|
||||
"createdAt": "2024-08-28",
|
||||
"updatedAt": "2024-10-06"
|
||||
}
|
|
@ -8,5 +8,8 @@
|
|||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/af7ee14f-e9d4-4806-8438-c59b02b77715/image.png",
|
||||
"author": "JLBlk",
|
||||
"version": "1.2.1",
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/af7ee14f-e9d4-4806-8438-c59b02b77715/preferences.json"
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/af7ee14f-e9d4-4806-8438-c59b02b77715/preferences.json",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-15",
|
||||
"updatedAt": "2024-10-06"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/b430a958-cd66-4edd-b451-c6c7cfb7e160/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/b430a958-cd66-4edd-b451-c6c7cfb7e160/image.png",
|
||||
"author": "adammpkins",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-29",
|
||||
"updatedAt": "2024-08-29"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/b51ff956-6aea-47ab-80c7-d6c047c0d510/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/b51ff956-6aea-47ab-80c7-d6c047c0d510/image.png",
|
||||
"author": "F-U-B-AR",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-03",
|
||||
"updatedAt": "2024-09-03"
|
||||
}
|
|
@ -8,5 +8,8 @@
|
|||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bed8c922-616a-4165-8c86-6822ccf478ad/image.png",
|
||||
"author": "ericmackrodt",
|
||||
"version": "1.0.0",
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bed8c922-616a-4165-8c86-6822ccf478ad/preferences.json"
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bed8c922-616a-4165-8c86-6822ccf478ad/preferences.json",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-07",
|
||||
"updatedAt": "2024-09-07"
|
||||
}
|
|
@ -8,5 +8,10 @@
|
|||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c5f7fb68-cc75-4df0-8b02-dc9ee13aa773/image.png",
|
||||
"author": "DaitiDay",
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c5f7fb68-cc75-4df0-8b02-dc9ee13aa773/preferences.json",
|
||||
"version": "1.0.1"
|
||||
"version": "1.0.1",
|
||||
"tags": [
|
||||
"tabs"
|
||||
],
|
||||
"createdAt": "2024-08-28",
|
||||
"updatedAt": "2024-09-07"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"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"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-19",
|
||||
"updatedAt": "2024-08-19"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c8d9e6e6-e702-4e15-8972-3596e57cf398/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c8d9e6e6-e702-4e15-8972-3596e57cf398/image.png",
|
||||
"author": "KiKaraage",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-03",
|
||||
"updatedAt": "2024-09-03"
|
||||
}
|
|
@ -8,5 +8,8 @@
|
|||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c8f20381-388a-4b67-b640-eaa539355ea4/image.png",
|
||||
"author": "p2d0",
|
||||
"version": "1.0.0",
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c8f20381-388a-4b67-b640-eaa539355ea4/preferences.json"
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c8f20381-388a-4b67-b640-eaa539355ea4/preferences.json",
|
||||
"tags": [],
|
||||
"createdAt": "2024-10-02",
|
||||
"updatedAt": "2024-10-02"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"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"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-24",
|
||||
"updatedAt": "2024-08-24"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d2953516-d239-4ef8-aac5-b238e3dc0360/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d2953516-d239-4ef8-aac5-b238e3dc0360/image.png",
|
||||
"author": "Axenide",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-29",
|
||||
"updatedAt": "2024-09-29"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d42bf02e-3411-4265-84e6-3dc2dba5fdd8/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d42bf02e-3411-4265-84e6-3dc2dba5fdd8/image.png",
|
||||
"author": "SudoVanilla",
|
||||
"version": "1.0.1"
|
||||
"version": "1.0.1",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-28",
|
||||
"updatedAt": "2024-08-31"
|
||||
}
|
|
@ -7,5 +7,10 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d8b79d4a-6cba-4495-9ff6-d6d30b0e94fe/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d8b79d4a-6cba-4495-9ff6-d6d30b0e94fe/image.png",
|
||||
"author": "HliasOuzounis",
|
||||
"version": "1.0.3"
|
||||
"version": "1.0.3",
|
||||
"tags": [
|
||||
"tabs"
|
||||
],
|
||||
"createdAt": "2024-09-07",
|
||||
"updatedAt": "2024-09-24"
|
||||
}
|
|
@ -8,5 +8,8 @@
|
|||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/image.png",
|
||||
"author": "JLBlk",
|
||||
"version": "1.3.0",
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/preferences.json"
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/preferences.json",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-31",
|
||||
"updatedAt": "2024-10-06"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/daf345ec-9a89-4b5d-9d41-47df562e29c9/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/daf345ec-9a89-4b5d-9d41-47df562e29c9/image.png",
|
||||
"author": "mauro-balades",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-29",
|
||||
"updatedAt": "2024-08-29"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/dbe05f83-b471-4278-a3f9-e5ed244b0d6c/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/dbe05f83-b471-4278-a3f9-e5ed244b0d6c/image.png",
|
||||
"author": "Osmagtor",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-25",
|
||||
"updatedAt": "2024-09-25"
|
||||
}
|
|
@ -8,5 +8,8 @@
|
|||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/dd4f5461-1564-4e56-9f9d-f81e3c18f93c/image.png",
|
||||
"author": "AntonioSTM",
|
||||
"version": "1.0.2",
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/dd4f5461-1564-4e56-9f9d-f81e3c18f93c/preferences.json"
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/dd4f5461-1564-4e56-9f9d-f81e3c18f93c/preferences.json",
|
||||
"tags": [],
|
||||
"createdAt": "2024-09-03",
|
||||
"updatedAt": "2024-09-03"
|
||||
}
|
|
@ -7,5 +7,13 @@
|
|||
"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"
|
||||
"version": "1.0.0",
|
||||
"isDarkMode": true,
|
||||
"isColorTheme": true,
|
||||
"tags": [
|
||||
"color scheme",
|
||||
"dark"
|
||||
],
|
||||
"createdAt": "2024-08-21",
|
||||
"updatedAt": "2024-09-09"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e4274cbc-c99b-411a-876d-9b943eb91282/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e4274cbc-c99b-411a-876d-9b943eb91282/image.png",
|
||||
"author": "ericmackrodt",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-31",
|
||||
"updatedAt": "2024-08-31"
|
||||
}
|
|
@ -7,5 +7,13 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e4faf306-61b1-4785-8678-7bdee9dc2564/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e4faf306-61b1-4785-8678-7bdee9dc2564/image.png",
|
||||
"author": "ZweTyy",
|
||||
"version": "1.0.1"
|
||||
"version": "1.0.1",
|
||||
"isDarkMode": true,
|
||||
"isColorTheme": true,
|
||||
"tags": [
|
||||
"color scheme",
|
||||
"dark"
|
||||
],
|
||||
"createdAt": "2024-09-15",
|
||||
"updatedAt": "2024-09-15"
|
||||
}
|
|
@ -8,5 +8,8 @@
|
|||
"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.2"
|
||||
"version": "1.0.2",
|
||||
"tags": [],
|
||||
"createdAt": "2024-08-19",
|
||||
"updatedAt": "2024-09-09"
|
||||
}
|
|
@ -7,5 +7,13 @@
|
|||
"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"
|
||||
"version": "1.0.0",
|
||||
"isDarkMode": true,
|
||||
"isColorTheme": true,
|
||||
"tags": [
|
||||
"color scheme",
|
||||
"dark"
|
||||
],
|
||||
"createdAt": "2024-08-23",
|
||||
"updatedAt": "2024-08-24"
|
||||
}
|
|
@ -7,5 +7,13 @@
|
|||
"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"
|
||||
"version": "1.0.0",
|
||||
"isDarkMode": true,
|
||||
"isColorTheme": true,
|
||||
"tags": [
|
||||
"color scheme",
|
||||
"dark"
|
||||
],
|
||||
"createdAt": "2024-08-22",
|
||||
"updatedAt": "2024-08-22"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/f4a7562f-6e54-4f1e-b835-a397fc6c15f2/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/f4a7562f-6e54-4f1e-b835-a397fc6c15f2/image.png",
|
||||
"author": "feco",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-10-06",
|
||||
"updatedAt": "2024-10-06"
|
||||
}
|
|
@ -7,5 +7,8 @@
|
|||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/f50841b2-5e4a-4534-985d-b7f7b96088c2/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/f50841b2-5e4a-4534-985d-b7f7b96088c2/image.png",
|
||||
"author": "JtdeGraaf",
|
||||
"version": "1.0.0"
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2024-10-06",
|
||||
"updatedAt": "2024-10-06"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue