diff --git a/.github/workflows/create-theme.yml b/.github/workflows/create-theme.yml index b50d9ed9..ae459699 100644 --- a/.github/workflows/create-theme.yml +++ b/.github/workflows/create-theme.yml @@ -17,7 +17,7 @@ jobs: uses: actions/setup-python@v2 with: python-version: '3.x' - + - name: Setup python modules run: | pip3 install requests @@ -39,19 +39,19 @@ jobs: echo "THEME_IS_COLOR_THEME=${{ contains(fromJson(steps.issue-parser.outputs.jsonString)['is-color-theme'], 'JSON Color Theme') }}" >> $GITHUB_ENV - name: Write styles to file - uses: "DamianReeves/write-file-action@master" + uses: 'DamianReeves/write-file-action@master' with: contents: ${{ fromJson(steps.issue-parser.outputs.jsonString)['styles'] }} path: theme-styles.css - name: Write readme to file - uses: "DamianReeves/write-file-action@master" + uses: 'DamianReeves/write-file-action@master' with: contents: ${{ fromJson(steps.issue-parser.outputs.jsonString)['readme'] }} path: theme-readme.md - name: Write preferences to file - uses: "DamianReeves/write-file-action@master" + uses: 'DamianReeves/write-file-action@master' if: fromJson(steps.issue-parser.outputs.jsonString)['preferences'] != '' with: contents: ${{ fromJson(steps.issue-parser.outputs.jsonString)['preferences'] }} @@ -64,7 +64,7 @@ jobs: - name: Create theme content run: | - python3 scripts/submit-theme.py \ + python3 scripts/submit_theme.py \ --name "${{ env.THEME_NAME }}" \ --description "${{ env.THEME_DESCRIPTION }}" \ --author "${{ env.THEME_AUTHOR }}" \ @@ -77,7 +77,7 @@ jobs: run: | cat error.log echo "CREATION_OUTPUT=$(cat error.log)" >> $GITHUB_ENV - + - name: Show error message if: failure() uses: peter-evans/close-issue@v3 @@ -97,9 +97,9 @@ jobs: add-paths: themes/ labels: staged token: ${{ secrets.DEPLOY_KEY }} - commit-message: "Add theme: ${{ env.THEME_NAME }}" + commit-message: 'Add theme: ${{ env.THEME_NAME }}' delete-branch: true - title: "Add theme: ${{ env.THEME_NAME }}" + title: 'Add theme: ${{ env.THEME_NAME }}' body: | # Add theme: ${{ env.THEME_NAME }} @@ -112,7 +112,7 @@ jobs: * **Author**: @${{ env.THEME_AUTHOR }} branch: create-theme-${{ github.event.issue.number }} base: main - + - name: Close Issue uses: peter-evans/close-issue@v3 with: diff --git a/.github/workflows/submit-pr.yml b/.github/workflows/submit-pr.yml index ee129439..62b0189d 100644 --- a/.github/workflows/submit-pr.yml +++ b/.github/workflows/submit-pr.yml @@ -3,7 +3,7 @@ on: pull_request: types: [closed] workflow_dispatch: - + jobs: submitPR: permissions: write-all @@ -18,6 +18,10 @@ jobs: with: python-version: '3.x' + - name: Setup python modules + run: | + pip3 install requests + - name: Setup Git run: | git config --global user.name "github-actions[bot]" @@ -25,13 +29,11 @@ jobs: - name: Rebuild all themes run: | - python3 scripts/rebuild-themes.py - + python3 scripts/rebuild_themes.py + - name: Commit changes run: | git add themes.json git add themes/* git commit -m "Rebuild themes.json after theme submission" git push - - diff --git a/scripts/__add-missing-versions.py b/scripts/__add_missing_versions.py similarity index 100% rename from scripts/__add-missing-versions.py rename to scripts/__add_missing_versions.py diff --git a/scripts/rebuild-themes.py b/scripts/rebuild-themes.py deleted file mode 100644 index 0d9bede4..00000000 --- a/scripts/rebuild-themes.py +++ /dev/null @@ -1,69 +0,0 @@ - -import os -import json - -THEMES_FOLDER = './themes' -THEMES_DATA_FILE = './themes.json' - -def get_color_css_variable(color): - if color == "primaryColor": - return '--zen-colors-primary' - if color == "secondaryColor": - return '--zen-colors-secondary' - if color == "tertiaryColor": - return '--zen-colors-tertiary' - if color == "colorsBorder": - return '--zen-colors-border' - if color == "dialogBg": - return '--zen-dialog-background' - if color == "accentColor": - return '--zen-primary-color' - print(f"Unknown color: {color}") - exit(1) - -def write_colors(colors_file, output_file): - with open(colors_file, 'r') as f: - colors = json.load(f) - with open(output_file, 'w') as f: - f.write('/* This is an auto generated color theme. */\n') - f.write(':root {\n') - for color in colors: - if color == "isDarkMode": - continue - f.write(f' {get_color_css_variable(color)}: {colors[color]} !important;\n') - f.write('}\n') - return colors - -def main(): - with open(THEMES_DATA_FILE, 'w') as f: - json.dump({}, f, indent=4) - for theme in os.listdir(THEMES_FOLDER): - theme_folder = os.path.join(THEMES_FOLDER, theme) - if not os.path.isdir(theme_folder): - continue - theme_data_file = os.path.join(theme_folder, 'theme.json') - if not os.path.exists(theme_data_file): - continue - with open(theme_data_file, 'r') as f: - theme_data = json.load(f) - with open(theme_data_file, 'w') as f: - json.dump(theme_data, f, indent=4) # format the json file - with open(THEMES_DATA_FILE, 'r') as f: - themes_data = json.load(f) - theme_colors_file = os.path.join(theme_folder, 'colors.json') - if os.path.exists(theme_colors_file): - print(f" Found colors.json in theme: {theme}") - 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'] - theme_data['isColorTheme'] = True - themes_data[theme] = theme_data - with open(THEMES_DATA_FILE, 'w') as f: - json.dump(themes_data, f) - del themes_data - print(f"Rebuilt theme: {theme}") - print("Rebuilt all themes!") - -if __name__ == '__main__': - main() diff --git a/scripts/rebuild_themes.py b/scripts/rebuild_themes.py new file mode 100644 index 00000000..78cdb460 --- /dev/null +++ b/scripts/rebuild_themes.py @@ -0,0 +1,109 @@ +import os +import json +from submit_theme import convert_legacy_preferences + +THEMES_FOLDER = "./themes" +THEMES_DATA_FILE = "./themes.json" + + +def get_color_css_variable(color): + if color == "primaryColor": + return "--zen-colors-primary" + if color == "secondaryColor": + return "--zen-colors-secondary" + if color == "tertiaryColor": + return "--zen-colors-tertiary" + if color == "colorsBorder": + return "--zen-colors-border" + if color == "dialogBg": + return "--zen-dialog-background" + if color == "accentColor": + return "--zen-primary-color" + print(f"Unknown color: {color}") + exit(1) + + +def write_colors(colors_file, output_file): + with open(colors_file, "r") as f: + colors = json.load(f) + + with open(output_file, "w") as f: + f.write("/* This is an auto generated color theme. */\n") + f.write(":root {\n") + + for color in colors: + if color == "isDarkMode": + continue + f.write( + f" {get_color_css_variable(color)}: {colors[color]} !important;\n" + ) + + f.write("}\n") + return colors + + +def main(): + with open(THEMES_DATA_FILE, "w") as f: + json.dump({}, f, indent=4) + for theme in os.listdir(THEMES_FOLDER): + theme_folder = os.path.join(THEMES_FOLDER, theme) + + if not os.path.isdir(theme_folder): + continue + + theme_data_file = os.path.join(theme_folder, "theme.json") + + if not os.path.exists(theme_data_file): + continue + + with open(theme_data_file, "r") as f: + theme_data = json.load(f) + + with open(theme_data_file, "w") as f: + json.dump(theme_data, f, indent=4) # format the json file + + with open(THEMES_DATA_FILE, "r") as f: + themes_data = json.load(f) + theme_colors_file = os.path.join(theme_folder, "colors.json") + + if os.path.exists(theme_colors_file): + print(f" Found colors.json in theme: {theme}") + + 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"] + + theme_data["isColorTheme"] = True + + themes_data[theme] = theme_data + + with open(THEMES_DATA_FILE, "w") as f: + json.dump(themes_data, f) + del themes_data + + preferences_data_file = os.path.join(theme_folder, "preferences.json") + + if os.path.exists(preferences_data_file): + print(f"Found preferences.json in theme: {theme}") + + with open(preferences_data_file, "r") as f: + preferences_data = json.load(f) + + if isinstance(preferences_data, dict): + print( + "Legacy preferences found, performing transformation into new structure." + ) + preferences_data = convert_legacy_preferences(preferences_data) + + with open(preferences_data_file, "w") as f: + json.dump(preferences_data, f, indent=4) + del preferences_data + + print(f"Rebuilt theme: {theme}") + print("Rebuilt all themes!") + + +if __name__ == "__main__": + main() diff --git a/scripts/submit-theme.py b/scripts/submit_theme.py similarity index 87% rename from scripts/submit-theme.py rename to scripts/submit_theme.py index 51f3dd75..e499d137 100644 --- a/scripts/submit-theme.py +++ b/scripts/submit_theme.py @@ -150,7 +150,9 @@ def validate_preferences(preferences): ) ) - if not set(properties.keys()).issuperset(REQUIRED_FIELDS): + if not len(set(properties).intersection(REQUIRED_FIELDS)) == len( + REQUIRED_FIELDS + ): panic(f"Required fields ({", ".join(REQUIRED_FIELDS)}) are not in {entry}.") current_type = parse_type(properties[PreferenceFields.TYPE]) @@ -206,10 +208,12 @@ def validate_preferences(preferences): panic( f"Field disabledOn in {current_property} is expecting an array" ) - elif len(value) != 0 and not set(value).issuperset(VALID_OS): - panic( - f"Field disabledOn in {current_property} is expecting one or more of {", ".join(VALID_OS)} but received {", ".join(value)}" - ) + elif len(value) != 0: + for possibleOs in value: + if possibleOs not in VALID_OS: + panic( + f"Field disabledOn in {current_property} is expecting one or more of {", ".join(VALID_OS)} but received {possibleOs}" + ) case PreferenceFields.PLACEHOLDER: if not current_type in PLACEHOLDER_TYPES: @@ -223,6 +227,33 @@ def validate_preferences(preferences): return preferences +def convert_legacy_preferences(preferences): + key_regex = re.compile(r"(!?)(?:(macos|windows|linux):)?([A-z0-9-_.]+)") + new_preferences = [] + for key, label in preferences.items(): + negated, osValue, property = key_regex.search(key).groups() + + disabledOn = [] + + if negated == "!" and osValue: + disabledOn = [osValue] + elif osValue: + disabledOn = [i for i in VALID_OS if i != osValue] + + new_preferences.append( + dict( + [ + ("property", property), + ("label", label), + ("type", "checkbox"), + ("disabledOn", disabledOn), + ] + ) + ) + + return new_preferences + + def get_preferences(): with open(TEMPLATE_PREFERENCES_FILE, "r") as f: try: @@ -231,7 +262,16 @@ def get_preferences(): return {} content = re.sub(r"```json\n*", "", content) content = re.sub(r"\n*```\n*", "", content) - return validate_preferences(json.loads(content)) + + if content.startswith("{") and content.endswith("}"): + print( + "Warning: Detected legacy preferences syntax, converting them into new syntax" + ) + content = convert_legacy_preferences(json.loads(content)) + else: + content = json.loads(content) + + return validate_preferences(content) except json.JSONDecodeError as e: panic("Preferences file is invalid.", e) diff --git a/themes.json b/themes.json index 2c66e3fd..ef8fdc9b 100644 --- a/themes.json +++ b/themes.json @@ -1 +1 @@ -{"17f70712-4530-42d0-ba0f-fa25bcbf2ddc": {"id": "17f70712-4530-42d0-ba0f-fa25bcbf2ddc", "name": "Vesper Dark", "description": "Pepermint and orange flavored dark theme for 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://i.imgur.com/SmQiVq7.png", "author": "bdsqqq", "version": "1.0.1", "isDarkMode": true, "isColorTheme": true}, "e4274cbc-c99b-411a-876d-9b943eb91282": {"id": "e4274cbc-c99b-411a-876d-9b943eb91282", "name": "Exit Button Right Padding", "description": "A simple theme that adds a bit of padding to the right of the exit button", "homepage": "https://github.com/ericmackrodt/zen-themes/", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e4274cbc-c99b-411a-876d-9b943eb91282/chrome.css", "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"}, "1e9f3101-210b-4ff5-8830-434e4919100d": {"id": "1e9f3101-210b-4ff5-8830-434e4919100d", "name": "Better Letterboxing", "description": "More pleasant, theme-friendly, and most importantly, rounded letterboxing.", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1e9f3101-210b-4ff5-8830-434e4919100d/chrome.css", "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"}, "053a3ffa-9233-4554-88f3-076e6a6ebb43": {"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.1"}, "ea1a5ace-f698-4b45-ab88-6e8bd3a563f0": {"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.2"}, "49dbaa98-06ee-42bd-9a8e-834babef7a41": {"id": "49dbaa98-06ee-42bd-9a8e-834babef7a41", "name": "Collapsed Tab X Button", "description": "This theme adds a close button to the collapsed tabs in Zen Browser.", "homepage": "https://github.com/burnt0rice/zen-themes/tree/main/collapsed-tab-close-button", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/49dbaa98-06ee-42bd-9a8e-834babef7a41/chrome.css", "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"}, "5ca67725-1f43-4ff2-9fcf-0c59af71c73a": {"id": "5ca67725-1f43-4ff2-9fcf-0c59af71c73a", "name": "Midnight", "description": "A dark and pleasant to the eyes purple theme :)", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5ca67725-1f43-4ff2-9fcf-0c59af71c73a/chrome.css", "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", "isDarkMode": true, "isColorTheme": true}, "74c755b3-41a5-4f78-83cb-cd1e1e076bb6": {"id": "74c755b3-41a5-4f78-83cb-cd1e1e076bb6", "name": "Better UniExtBtn", "description": "change unified extensions button to zen browser icon", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/74c755b3-41a5-4f78-83cb-cd1e1e076bb6/chrome.css", "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"}, "d8a9b9a4-30b7-48b5-99ad-448efa604f7e": {"id": "d8a9b9a4-30b7-48b5-99ad-448efa604f7e", "name": "Only top bar in compact", "description": "This theme will allow you can use the only hide the top bar of your browser, so that you can still see all of your tabs", "homepage": "https://github.com/vytorrennan/Zen-theme-only-top-bar-compact", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d8a9b9a4-30b7-48b5-99ad-448efa604f7e/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d8a9b9a4-30b7-48b5-99ad-448efa604f7e/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d8a9b9a4-30b7-48b5-99ad-448efa604f7e/image.png", "author": "vytorrennan", "version": "1.0.1"}, "ad97bb70-0066-4e42-9b5f-173a5e42c6fc": {"id": "ad97bb70-0066-4e42-9b5f-173a5e42c6fc", "name": "SuperPins", "description": "This Zen theme enhances pinned tabs and the tab bar in general, inspired by the favorites in Arc.", "homepage": "https://github.com/JLBlk/Zen-Themes/tree/main/SuperPins", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/image.png", "author": "JLBlk", "version": "1.3.2", "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/preferences.json"}, "bed8c922-616a-4165-8c86-6822ccf478ad": {"id": "bed8c922-616a-4165-8c86-6822ccf478ad", "name": "Erics Zen UI Tweak Box", "description": "Various tweaks for the Zen Browser UI", "homepage": "https://github.com/ericmackrodt/zen-themes", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bed8c922-616a-4165-8c86-6822ccf478ad/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bed8c922-616a-4165-8c86-6822ccf478ad/readme.md", "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"}, "d8b79d4a-6cba-4495-9ff6-d6d30b0e94fe": {"id": "d8b79d4a-6cba-4495-9ff6-d6d30b0e94fe", "name": "Better Active Tab", "description": "Adds a bright line next to the active tab to better highlight it.", "homepage": "https://github.com/HliasOuzounis/zen-browser-better-active-tab-indicator", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d8b79d4a-6cba-4495-9ff6-d6d30b0e94fe/chrome.css", "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.2"}, "35f24f2c-b211-43e2-9fe4-2c3bc217d9f7": {"id": "35f24f2c-b211-43e2-9fe4-2c3bc217d9f7", "name": "Compact tabs title", "description": "Show the first few title characters even in compact mode", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/35f24f2c-b211-43e2-9fe4-2c3bc217d9f7/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/35f24f2c-b211-43e2-9fe4-2c3bc217d9f7/readme.md", "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"}, "b51ff956-6aea-47ab-80c7-d6c047c0d510": {"id": "b51ff956-6aea-47ab-80c7-d6c047c0d510", "name": "Disable Status Bar", "description": "This removes the bottom-left status bar when hovering over a URL.", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/b51ff956-6aea-47ab-80c7-d6c047c0d510/chrome.css", "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"}, "b430a958-cd66-4edd-b451-c6c7cfb7e160": {"id": "b430a958-cd66-4edd-b451-c6c7cfb7e160", "name": "HidePlugins", "description": "Theme to hide the plugin button from the toolbar.", "homepage": "https://github.com/adammpkins/HidePlugins/tree/main", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/b430a958-cd66-4edd-b451-c6c7cfb7e160/chrome.css", "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"}, "c6813222-6571-4ba6-8faf-58f3343324f6": {"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"}, "2e3369c7-e450-46ba-8794-75ccb0de5e48": {"id": "2e3369c7-e450-46ba-8794-75ccb0de5e48", "name": "Now playing indicator", "description": "Display an indicator on the 'Now playing' tab when the sidebar is collapsed.", "homepage": "https://github.com/benstone326/zen-browser-now-playing-indicator", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/2e3369c7-e450-46ba-8794-75ccb0de5e48/chrome.css", "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.1.2"}, "daf345ec-9a89-4b5d-9d41-47df562e29c9": {"id": "daf345ec-9a89-4b5d-9d41-47df562e29c9", "name": "Secret Theme", "description": "Secret theme made for people to have a little laugh!", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/daf345ec-9a89-4b5d-9d41-47df562e29c9/chrome.css", "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"}, "ecda11ae-d3fd-4052-8881-303b2504e3ce": {"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", "isDarkMode": true, "isColorTheme": true}, "5941aefd-67b0-453d-9b62-9071a31cbb0d": {"id": "5941aefd-67b0-453d-9b62-9071a31cbb0d", "name": "Smaller Compact Mode", "description": "Reduce the height of the compact sidebar!", "homepage": "https://github.com/n7itro/Zen-Themes", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5941aefd-67b0-453d-9b62-9071a31cbb0d/chrome.css", "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.1"}, "180d9426-a020-4bd7-98ec-63f957291119": {"id": "180d9426-a020-4bd7-98ec-63f957291119", "name": "TitleBarButton UI Tweaks", "description": "Small UI tweaks to the titlebar buttons to make them more coherent with the Zen Browser design philosophy.", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/180d9426-a020-4bd7-98ec-63f957291119/chrome.css", "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"}, "ab9b529c-63d6-48c0-a59a-4a407c5c3129": {"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.1.0"}, "6cd4bca9-f17d-4461-b554-844d69a4887c": {"id": "6cd4bca9-f17d-4461-b554-844d69a4887c", "name": "Zen Minimal Exit Menu", "description": "A zen browser mod that changes the exit menu to 3 circles similar (but a bit different) to one in MacOS.", "homepage": "https://github.com/Dinno-DEV/zen-minimal-exit-menu", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/6cd4bca9-f17d-4461-b554-844d69a4887c/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/6cd4bca9-f17d-4461-b554-844d69a4887c/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/6cd4bca9-f17d-4461-b554-844d69a4887c/image.png", "author": "Dinno-DEV", "version": "1.0.0"}, "58649066-2b6f-4a5b-af6d-c3d21d16fc00": {"id": "58649066-2b6f-4a5b-af6d-c3d21d16fc00", "name": "Private Mode Highlighting", "description": "This theme adds extra theming and an 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.2"}, "c5f7fb68-cc75-4df0-8b02-dc9ee13aa773": {"id": "c5f7fb68-cc75-4df0-8b02-dc9ee13aa773", "name": "Audio TabIcon Plus", "description": "Enhance audio/mute tab-icon", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c5f7fb68-cc75-4df0-8b02-dc9ee13aa773/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c5f7fb68-cc75-4df0-8b02-dc9ee13aa773/readme.md", "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"}, "5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c": {"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"}, "1e86cf37-a127-4f24-b919-d265b5ce29a0": {"id": "1e86cf37-a127-4f24-b919-d265b5ce29a0", "name": "Cleaner Extension Menu", "description": "Remove header and reduce width of the Unified Extension Menu in Zen", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1e86cf37-a127-4f24-b919-d265b5ce29a0/chrome.css", "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"}, "c8d9e6e6-e702-4e15-8972-3596e57cf398": {"id": "c8d9e6e6-e702-4e15-8972-3596e57cf398", "name": "Zen Back Forward", "description": "Hide Back and Forward button when you don't need them", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c8d9e6e6-e702-4e15-8972-3596e57cf398/chrome.css", "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"}, "ef16716a-58dc-42d4-99f8-b1667d32247d": {"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", "isDarkMode": true, "isColorTheme": true}, "e4faf306-61b1-4785-8678-7bdee9dc2564": {"id": "e4faf306-61b1-4785-8678-7bdee9dc2564", "name": "Tokyo Night Moon", "description": "A dark theme inspired by folke's Tokyo Night Moon color palette", "homepage": "https://github.com/ZweTyy/Tokyo-Night-Moon-Theme-Zen-browser", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e4faf306-61b1-4785-8678-7bdee9dc2564/chrome.css", "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", "isDarkMode": true, "isColorTheme": true}, "abc2d6d8-ea9c-4313-a99c-fb1e76e8b3e5": {"id": "abc2d6d8-ea9c-4313-a99c-fb1e76e8b3e5", "name": "Drop Shadow", "description": "Adds a drop shadow to the website's browser panel.", "homepage": "https://github.com/mohvn/dropshadow-zenbrowser", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/abc2d6d8-ea9c-4313-a99c-fb1e76e8b3e5/chrome.css", "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"}, "e3eec307-7c64-4cbd-a0c5-3447cd45a840": {"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", "isDarkMode": true, "isColorTheme": true}, "af7ee14f-e9d4-4806-8438-c59b02b77715": {"id": "af7ee14f-e9d4-4806-8438-c59b02b77715", "name": "SuperGradient", "description": "This Zen Theme gives you great looking gradients with many options to customize it to your liking.", "homepage": "https://github.com/JLBlk/Zen-Themes/tree/main/SuperGradient", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/af7ee14f-e9d4-4806-8438-c59b02b77715/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/af7ee14f-e9d4-4806-8438-c59b02b77715/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/af7ee14f-e9d4-4806-8438-c59b02b77715/image.png", "author": "JLBlk", "version": "1.0.0", "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/af7ee14f-e9d4-4806-8438-c59b02b77715/preferences.json"}, "56449583-f295-4f34-baf8-da70d3d156e7": {"id": "56449583-f295-4f34-baf8-da70d3d156e7", "name": "Solarized", "description": "Solarized color pallete ported into Zen!", "homepage": "https://github.com/mohvn/solarized-zenbrowser", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/56449583-f295-4f34-baf8-da70d3d156e7/chrome.css", "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", "isDarkMode": true, "isColorTheme": true}, "67b12475-1c26-4d13-9156-297383ed8dbf": {"id": "67b12475-1c26-4d13-9156-297383ed8dbf", "name": "Floating toolbar", "description": "Detaches toolbar from edge of browser window so that it appears to float", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/67b12475-1c26-4d13-9156-297383ed8dbf/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/67b12475-1c26-4d13-9156-297383ed8dbf/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/67b12475-1c26-4d13-9156-297383ed8dbf/image.png", "author": "anaarkei", "version": "1.0.0"}, "4ab93b88-151c-451b-a1b7-a1e0e28fa7f8": {"id": "4ab93b88-151c-451b-a1b7-a1e0e28fa7f8", "name": "No Sidebar Scrollbar", "description": "This theme removes the Sidebar Scrollbar while retaining the scroll functionality.", "homepage": "https://github.com/mally8/zen-browser-no-sidebar-scrollbar", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/4ab93b88-151c-451b-a1b7-a1e0e28fa7f8/chrome.css", "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"}, "680424a8-a818-406b-98c5-7726214e2a9f": {"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.2"}, "d93e67f8-e5e1-401e-9b82-f9d5bab231e6": {"id": "d93e67f8-e5e1-401e-9b82-f9d5bab231e6", "name": "Super Url Bar", "description": "Get simple rounded edges, centered text, a removed border for your url bar and a background blur.", "homepage": "https://github.com/JLBlk/Zen-Themes/tree/main/SuperUrlBar", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/image.png", "author": "JLBlk", "version": "1.1.1", "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/preferences.json"}, "5274f79a-e648-4029-adf3-3f10dfdc0012": {"id": "5274f79a-e648-4029-adf3-3f10dfdc0012", "name": "Zen Sidebery", "description": "Hide native Zen tab panel to use Sidebery", "homepage": "https://github.com/Alexcoder5/zen-sidebery/tree/main", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5274f79a-e648-4029-adf3-3f10dfdc0012/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5274f79a-e648-4029-adf3-3f10dfdc0012/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5274f79a-e648-4029-adf3-3f10dfdc0012/image.png", "author": "Alexcoder5", "version": "1.0.0", "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5274f79a-e648-4029-adf3-3f10dfdc0012/preferences.json"}, "570afd9d-96fa-48b5-bad3-0c106757cce9": {"id": "570afd9d-96fa-48b5-bad3-0c106757cce9", "name": "Super Sleek UI", "description": "A sleek & minimalistic UI with grid-style quick access, smaller navbar, no border padding & more.", "homepage": "https://github.com/lingais/Zen-Broswer-Super-Sleek-UI-Theme.git", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/570afd9d-96fa-48b5-bad3-0c106757cce9/chrome.css", "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"}, "5a007026-0801-4a5d-9740-f17dc1c3ff21": {"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"}, "d42bf02e-3411-4265-84e6-3dc2dba5fdd8": {"id": "d42bf02e-3411-4265-84e6-3dc2dba5fdd8", "name": "elementary OS Titlebar", "description": "Respect elementary OS's default titlebar layout", "homepage": "https://ark.sudovanilla.org/Korbs/zen-eos-fix", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d42bf02e-3411-4265-84e6-3dc2dba5fdd8/chrome.css", "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"}, "cb15abdb-0514-4e09-8ce5-722cf1f4a20f": {"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"}, "dd4f5461-1564-4e56-9f9d-f81e3c18f93c": {"id": "dd4f5461-1564-4e56-9f9d-f81e3c18f93c", "name": "Zen Sidebar At Right Side", "description": "Pin or float the Zen Sidebar at the right side.", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/dd4f5461-1564-4e56-9f9d-f81e3c18f93c/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/dd4f5461-1564-4e56-9f9d-f81e3c18f93c/readme.md", "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"}, "64cdc40f-2366-4b5b-8bad-d0524682595e": {"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.2"}, "83a641f7-eca9-4c0f-91af-45627bef0539": {"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.5"}} \ No newline at end of file +{"17f70712-4530-42d0-ba0f-fa25bcbf2ddc": {"id": "17f70712-4530-42d0-ba0f-fa25bcbf2ddc", "name": "Vesper Dark", "description": "Pepermint and orange flavored dark theme for 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://i.imgur.com/SmQiVq7.png", "author": "bdsqqq", "version": "1.0.1", "isDarkMode": true, "isColorTheme": true}, "e4274cbc-c99b-411a-876d-9b943eb91282": {"id": "e4274cbc-c99b-411a-876d-9b943eb91282", "name": "Exit Button Right Padding", "description": "A simple theme that adds a bit of padding to the right of the exit button", "homepage": "https://github.com/ericmackrodt/zen-themes/", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e4274cbc-c99b-411a-876d-9b943eb91282/chrome.css", "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"}, "1e9f3101-210b-4ff5-8830-434e4919100d": {"id": "1e9f3101-210b-4ff5-8830-434e4919100d", "name": "Better Letterboxing", "description": "More pleasant, theme-friendly, and most importantly, rounded letterboxing.", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1e9f3101-210b-4ff5-8830-434e4919100d/chrome.css", "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"}, "053a3ffa-9233-4554-88f3-076e6a6ebb43": {"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.1"}, "ea1a5ace-f698-4b45-ab88-6e8bd3a563f0": {"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.2"}, "49dbaa98-06ee-42bd-9a8e-834babef7a41": {"id": "49dbaa98-06ee-42bd-9a8e-834babef7a41", "name": "Collapsed Tab X Button", "description": "This theme adds a close button to the collapsed tabs in Zen Browser.", "homepage": "https://github.com/burnt0rice/zen-themes/tree/main/collapsed-tab-close-button", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/49dbaa98-06ee-42bd-9a8e-834babef7a41/chrome.css", "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"}, "5ca67725-1f43-4ff2-9fcf-0c59af71c73a": {"id": "5ca67725-1f43-4ff2-9fcf-0c59af71c73a", "name": "Midnight", "description": "A dark and pleasant to the eyes purple theme :)", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5ca67725-1f43-4ff2-9fcf-0c59af71c73a/chrome.css", "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", "isDarkMode": true, "isColorTheme": true}, "74c755b3-41a5-4f78-83cb-cd1e1e076bb6": {"id": "74c755b3-41a5-4f78-83cb-cd1e1e076bb6", "name": "Better UniExtBtn", "description": "change unified extensions button to zen browser icon", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/74c755b3-41a5-4f78-83cb-cd1e1e076bb6/chrome.css", "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"}, "d8a9b9a4-30b7-48b5-99ad-448efa604f7e": {"id": "d8a9b9a4-30b7-48b5-99ad-448efa604f7e", "name": "Only top bar in compact", "description": "This theme will allow you can use the only hide the top bar of your browser, so that you can still see all of your tabs", "homepage": "https://github.com/vytorrennan/Zen-theme-only-top-bar-compact", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d8a9b9a4-30b7-48b5-99ad-448efa604f7e/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d8a9b9a4-30b7-48b5-99ad-448efa604f7e/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d8a9b9a4-30b7-48b5-99ad-448efa604f7e/image.png", "author": "vytorrennan", "version": "1.0.1"}, "ad97bb70-0066-4e42-9b5f-173a5e42c6fc": {"id": "ad97bb70-0066-4e42-9b5f-173a5e42c6fc", "name": "SuperPins", "description": "This Zen theme enhances pinned tabs and the tab bar in general, inspired by the favorites in Arc.", "homepage": "https://github.com/JLBlk/Zen-Themes/tree/main/SuperPins", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/image.png", "author": "JLBlk", "version": "1.3.2", "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/preferences.json"}, "bed8c922-616a-4165-8c86-6822ccf478ad": {"id": "bed8c922-616a-4165-8c86-6822ccf478ad", "name": "Erics Zen UI Tweak Box", "description": "Various tweaks for the Zen Browser UI", "homepage": "https://github.com/ericmackrodt/zen-themes", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bed8c922-616a-4165-8c86-6822ccf478ad/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bed8c922-616a-4165-8c86-6822ccf478ad/readme.md", "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"}, "d8b79d4a-6cba-4495-9ff6-d6d30b0e94fe": {"id": "d8b79d4a-6cba-4495-9ff6-d6d30b0e94fe", "name": "Better Active Tab", "description": "Adds a bright line next to the active tab to better highlight it.", "homepage": "https://github.com/HliasOuzounis/zen-browser-better-active-tab-indicator", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d8b79d4a-6cba-4495-9ff6-d6d30b0e94fe/chrome.css", "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.2"}, "35f24f2c-b211-43e2-9fe4-2c3bc217d9f7": {"id": "35f24f2c-b211-43e2-9fe4-2c3bc217d9f7", "name": "Compact tabs title", "description": "Show the first few title characters even in compact mode", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/35f24f2c-b211-43e2-9fe4-2c3bc217d9f7/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/35f24f2c-b211-43e2-9fe4-2c3bc217d9f7/readme.md", "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"}, "b51ff956-6aea-47ab-80c7-d6c047c0d510": {"id": "b51ff956-6aea-47ab-80c7-d6c047c0d510", "name": "Disable Status Bar", "description": "This removes the bottom-left status bar when hovering over a URL.", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/b51ff956-6aea-47ab-80c7-d6c047c0d510/chrome.css", "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"}, "b430a958-cd66-4edd-b451-c6c7cfb7e160": {"id": "b430a958-cd66-4edd-b451-c6c7cfb7e160", "name": "HidePlugins", "description": "Theme to hide the plugin button from the toolbar.", "homepage": "https://github.com/adammpkins/HidePlugins/tree/main", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/b430a958-cd66-4edd-b451-c6c7cfb7e160/chrome.css", "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"}, "c6813222-6571-4ba6-8faf-58f3343324f6": {"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"}, "2e3369c7-e450-46ba-8794-75ccb0de5e48": {"id": "2e3369c7-e450-46ba-8794-75ccb0de5e48", "name": "Now playing indicator", "description": "Display an indicator on the 'Now playing' tab when the sidebar is collapsed.", "homepage": "https://github.com/benstone326/zen-browser-now-playing-indicator", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/2e3369c7-e450-46ba-8794-75ccb0de5e48/chrome.css", "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.1.2"}, "daf345ec-9a89-4b5d-9d41-47df562e29c9": {"id": "daf345ec-9a89-4b5d-9d41-47df562e29c9", "name": "Secret Theme", "description": "Secret theme made for people to have a little laugh!", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/daf345ec-9a89-4b5d-9d41-47df562e29c9/chrome.css", "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"}, "ecda11ae-d3fd-4052-8881-303b2504e3ce": {"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", "isDarkMode": true, "isColorTheme": true}, "5941aefd-67b0-453d-9b62-9071a31cbb0d": {"id": "5941aefd-67b0-453d-9b62-9071a31cbb0d", "name": "Smaller Compact Mode", "description": "Reduce the height of the compact sidebar!", "homepage": "https://github.com/n7itro/Zen-Themes", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5941aefd-67b0-453d-9b62-9071a31cbb0d/chrome.css", "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.1"}, "180d9426-a020-4bd7-98ec-63f957291119": {"id": "180d9426-a020-4bd7-98ec-63f957291119", "name": "TitleBarButton UI Tweaks", "description": "Small UI tweaks to the titlebar buttons to make them more coherent with the Zen Browser design philosophy.", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/180d9426-a020-4bd7-98ec-63f957291119/chrome.css", "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"}, "ab9b529c-63d6-48c0-a59a-4a407c5c3129": {"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.1.0"}, "6cd4bca9-f17d-4461-b554-844d69a4887c": {"id": "6cd4bca9-f17d-4461-b554-844d69a4887c", "name": "Zen Minimal Exit Menu", "description": "A zen browser mod that changes the exit menu to 3 circles similar (but a bit different) to one in MacOS.", "homepage": "https://github.com/Dinno-DEV/zen-minimal-exit-menu", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/6cd4bca9-f17d-4461-b554-844d69a4887c/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/6cd4bca9-f17d-4461-b554-844d69a4887c/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/6cd4bca9-f17d-4461-b554-844d69a4887c/image.png", "author": "Dinno-DEV", "version": "1.0.0"}, "58649066-2b6f-4a5b-af6d-c3d21d16fc00": {"id": "58649066-2b6f-4a5b-af6d-c3d21d16fc00", "name": "Private Mode Highlighting", "description": "This theme adds extra theming and an 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.3"}, "c5f7fb68-cc75-4df0-8b02-dc9ee13aa773": {"id": "c5f7fb68-cc75-4df0-8b02-dc9ee13aa773", "name": "Audio TabIcon Plus", "description": "Enhance audio/mute tab-icon", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c5f7fb68-cc75-4df0-8b02-dc9ee13aa773/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c5f7fb68-cc75-4df0-8b02-dc9ee13aa773/readme.md", "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"}, "5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c": {"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"}, "1e86cf37-a127-4f24-b919-d265b5ce29a0": {"id": "1e86cf37-a127-4f24-b919-d265b5ce29a0", "name": "Cleaner Extension Menu", "description": "Remove header and reduce width of the Unified Extension Menu in Zen", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1e86cf37-a127-4f24-b919-d265b5ce29a0/chrome.css", "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"}, "c8d9e6e6-e702-4e15-8972-3596e57cf398": {"id": "c8d9e6e6-e702-4e15-8972-3596e57cf398", "name": "Zen Back Forward", "description": "Hide Back and Forward button when you don't need them", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c8d9e6e6-e702-4e15-8972-3596e57cf398/chrome.css", "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"}, "ef16716a-58dc-42d4-99f8-b1667d32247d": {"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", "isDarkMode": true, "isColorTheme": true}, "e4faf306-61b1-4785-8678-7bdee9dc2564": {"id": "e4faf306-61b1-4785-8678-7bdee9dc2564", "name": "Tokyo Night Moon", "description": "A dark theme inspired by folke's Tokyo Night Moon color palette", "homepage": "https://github.com/ZweTyy/Tokyo-Night-Moon-Theme-Zen-browser", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e4faf306-61b1-4785-8678-7bdee9dc2564/chrome.css", "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", "isDarkMode": true, "isColorTheme": true}, "abc2d6d8-ea9c-4313-a99c-fb1e76e8b3e5": {"id": "abc2d6d8-ea9c-4313-a99c-fb1e76e8b3e5", "name": "Drop Shadow", "description": "Adds a drop shadow to the website's browser panel.", "homepage": "https://github.com/mohvn/dropshadow-zenbrowser", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/abc2d6d8-ea9c-4313-a99c-fb1e76e8b3e5/chrome.css", "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"}, "e3eec307-7c64-4cbd-a0c5-3447cd45a840": {"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", "isDarkMode": true, "isColorTheme": true}, "af7ee14f-e9d4-4806-8438-c59b02b77715": {"id": "af7ee14f-e9d4-4806-8438-c59b02b77715", "name": "SuperGradient", "description": "This Zen Theme gives you great looking gradients with many options to customize it to your liking.", "homepage": "https://github.com/JLBlk/Zen-Themes/tree/main/SuperGradient", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/af7ee14f-e9d4-4806-8438-c59b02b77715/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/af7ee14f-e9d4-4806-8438-c59b02b77715/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/af7ee14f-e9d4-4806-8438-c59b02b77715/image.png", "author": "JLBlk", "version": "1.0.0", "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/af7ee14f-e9d4-4806-8438-c59b02b77715/preferences.json"}, "56449583-f295-4f34-baf8-da70d3d156e7": {"id": "56449583-f295-4f34-baf8-da70d3d156e7", "name": "Solarized", "description": "Solarized color pallete ported into Zen!", "homepage": "https://github.com/mohvn/solarized-zenbrowser", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/56449583-f295-4f34-baf8-da70d3d156e7/chrome.css", "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", "isDarkMode": true, "isColorTheme": true}, "67b12475-1c26-4d13-9156-297383ed8dbf": {"id": "67b12475-1c26-4d13-9156-297383ed8dbf", "name": "Floating toolbar", "description": "Detaches toolbar from edge of browser window so that it appears to float", "homepage": "https://github.com/anaarkei/zen-floating-toolbar", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/67b12475-1c26-4d13-9156-297383ed8dbf/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/67b12475-1c26-4d13-9156-297383ed8dbf/readme.md", "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.0"}, "4ab93b88-151c-451b-a1b7-a1e0e28fa7f8": {"id": "4ab93b88-151c-451b-a1b7-a1e0e28fa7f8", "name": "No Sidebar Scrollbar", "description": "This theme removes the Sidebar Scrollbar while retaining the scroll functionality.", "homepage": "https://github.com/mally8/zen-browser-no-sidebar-scrollbar", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/4ab93b88-151c-451b-a1b7-a1e0e28fa7f8/chrome.css", "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"}, "680424a8-a818-406b-98c5-7726214e2a9f": {"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.2"}, "d93e67f8-e5e1-401e-9b82-f9d5bab231e6": {"id": "d93e67f8-e5e1-401e-9b82-f9d5bab231e6", "name": "Super Url Bar", "description": "Get simple rounded edges, centered text, a removed border for your url bar and a background blur.", "homepage": "https://github.com/JLBlk/Zen-Themes/tree/main/SuperUrlBar", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/image.png", "author": "JLBlk", "version": "1.1.1", "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/preferences.json"}, "5274f79a-e648-4029-adf3-3f10dfdc0012": {"id": "5274f79a-e648-4029-adf3-3f10dfdc0012", "name": "Zen Sidebery", "description": "Hide native Zen tab panel to use Sidebery", "homepage": "https://github.com/Alexcoder5/zen-sidebery/tree/main", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5274f79a-e648-4029-adf3-3f10dfdc0012/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5274f79a-e648-4029-adf3-3f10dfdc0012/readme.md", "image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5274f79a-e648-4029-adf3-3f10dfdc0012/image.png", "author": "Alexcoder5", "version": "1.0.0", "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5274f79a-e648-4029-adf3-3f10dfdc0012/preferences.json"}, "570afd9d-96fa-48b5-bad3-0c106757cce9": {"id": "570afd9d-96fa-48b5-bad3-0c106757cce9", "name": "Super Sleek UI", "description": "A sleek & minimalistic UI with grid-style quick access, smaller navbar, no border padding & more.", "homepage": "https://github.com/lingais/Zen-Broswer-Super-Sleek-UI-Theme.git", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/570afd9d-96fa-48b5-bad3-0c106757cce9/chrome.css", "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"}, "5a007026-0801-4a5d-9740-f17dc1c3ff21": {"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"}, "d42bf02e-3411-4265-84e6-3dc2dba5fdd8": {"id": "d42bf02e-3411-4265-84e6-3dc2dba5fdd8", "name": "elementary OS Titlebar", "description": "Respect elementary OS's default titlebar layout", "homepage": "https://ark.sudovanilla.org/Korbs/zen-eos-fix", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d42bf02e-3411-4265-84e6-3dc2dba5fdd8/chrome.css", "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"}, "cb15abdb-0514-4e09-8ce5-722cf1f4a20f": {"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"}, "dd4f5461-1564-4e56-9f9d-f81e3c18f93c": {"id": "dd4f5461-1564-4e56-9f9d-f81e3c18f93c", "name": "Zen Sidebar At Right Side", "description": "Pin or float the Zen Sidebar at the right side.", "homepage": "", "style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/dd4f5461-1564-4e56-9f9d-f81e3c18f93c/chrome.css", "readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/dd4f5461-1564-4e56-9f9d-f81e3c18f93c/readme.md", "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"}, "64cdc40f-2366-4b5b-8bad-d0524682595e": {"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.2"}, "83a641f7-eca9-4c0f-91af-45627bef0539": {"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.5"}} \ No newline at end of file diff --git a/themes/35f24f2c-b211-43e2-9fe4-2c3bc217d9f7/preferences.json b/themes/35f24f2c-b211-43e2-9fe4-2c3bc217d9f7/preferences.json index 960fe44c..7e109ce3 100644 --- a/themes/35f24f2c-b211-43e2-9fe4-2c3bc217d9f7/preferences.json +++ b/themes/35f24f2c-b211-43e2-9fe4-2c3bc217d9f7/preferences.json @@ -1,6 +1,26 @@ -{ - "uc.theme.comptitle-one-char-title.enabled": "Shorter title (1 character)", - "uc.theme.comptitle-three-char-title.enabled": "Longer title (3 characters)", - "uc.theme.comptitle-enable-pinned.enabled": "Enable in pinned tabs", - "uc.theme.comptitle-default-text.enabled": "More contrast-y text, may be harder to look at" -} \ No newline at end of file +[ + { + "property": "uc.theme.comptitle-one-char-title.enabled", + "label": "Shorter title (1 character)", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.theme.comptitle-three-char-title.enabled", + "label": "Longer title (3 characters)", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.theme.comptitle-enable-pinned.enabled", + "label": "Enable in pinned tabs", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.theme.comptitle-default-text.enabled", + "label": "More contrast-y text, may be harder to look at", + "type": "checkbox", + "disabledOn": [] + } +] \ No newline at end of file diff --git a/themes/5274f79a-e648-4029-adf3-3f10dfdc0012/preferences.json b/themes/5274f79a-e648-4029-adf3-3f10dfdc0012/preferences.json index 2cd6dce7..a904a672 100644 --- a/themes/5274f79a-e648-4029-adf3-3f10dfdc0012/preferences.json +++ b/themes/5274f79a-e648-4029-adf3-3f10dfdc0012/preferences.json @@ -1,3 +1,8 @@ -{ - "uc.theme.hide-sidebar-header.enabled": "Hide Sidebar Header" -} \ No newline at end of file +[ + { + "property": "uc.theme.hide-sidebar-header.enabled", + "label": "Hide Sidebar Header", + "type": "checkbox", + "disabledOn": [] + } +] \ No newline at end of file diff --git a/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/preferences.json b/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/preferences.json index 710c2bd5..2512ae9f 100644 --- a/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/preferences.json +++ b/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/preferences.json @@ -84,4 +84,4 @@ "label": "Hide the private browsing icon.", "type": "checkbox" } -] +] \ No newline at end of file diff --git a/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/preferences.json b/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/preferences.json index c66b63b4..1c097b60 100644 --- a/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/preferences.json +++ b/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/preferences.json @@ -1 +1,35 @@ -{"!macos:uc.hide-minimize": "Hide the minimize window button", "!macos:uc.hide-maximize": "Hide the maximize window button", "!macos:uc.hide-close": "Hide the close window button", "macos:uc.hide-window-buttons": "Hide the window buttons"} +[ + { + "property": "uc.hide-minimize", + "label": "Hide the minimize window button", + "type": "checkbox", + "disabledOn": [ + "macos" + ] + }, + { + "property": "uc.hide-maximize", + "label": "Hide the maximize window button", + "type": "checkbox", + "disabledOn": [ + "macos" + ] + }, + { + "property": "uc.hide-close", + "label": "Hide the close window button", + "type": "checkbox", + "disabledOn": [ + "macos" + ] + }, + { + "property": "uc.hide-window-buttons", + "label": "Hide the window buttons", + "type": "checkbox", + "disabledOn": [ + "linux", + "windows" + ] + } +] \ No newline at end of file diff --git a/themes/67b12475-1c26-4d13-9156-297383ed8dbf/preferences.json b/themes/67b12475-1c26-4d13-9156-297383ed8dbf/preferences.json index 41838557..889f93fe 100644 --- a/themes/67b12475-1c26-4d13-9156-297383ed8dbf/preferences.json +++ b/themes/67b12475-1c26-4d13-9156-297383ed8dbf/preferences.json @@ -1,5 +1,20 @@ -{ - "uc.floatingtoolbar.compact.enabled": "Enable compact toolbar, similar to Smaller Compact Mode by n7itro", - "uc.floatingtoolbar.increase.spacing": "Increase space around edge of browser window and toolbar / tab bar", - "uc.floatingtoolbar.merge.bookmarks": "Merge bookmark bar with toolbar (requires visible bookbark bar)" -} +[ + { + "property": "uc.floatingtoolbar.compact.enabled", + "label": "Enable compact toolbar, similar to Smaller Compact Mode by n7itro", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.floatingtoolbar.increase.spacing", + "label": "Increase space around edge of browser window and toolbar / tab bar", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.floatingtoolbar.merge.bookmarks", + "label": "Merge bookmark bar with toolbar (requires visible bookbark bar)", + "type": "checkbox", + "disabledOn": [] + } +] \ No newline at end of file diff --git a/themes/67b12475-1c26-4d13-9156-297383ed8dbf/theme.json b/themes/67b12475-1c26-4d13-9156-297383ed8dbf/theme.json index 90e2ed2d..666951cd 100644 --- a/themes/67b12475-1c26-4d13-9156-297383ed8dbf/theme.json +++ b/themes/67b12475-1c26-4d13-9156-297383ed8dbf/theme.json @@ -9,4 +9,4 @@ "author": "anaarkei", "preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/67b12475-1c26-4d13-9156-297383ed8dbf/preferences.json", "version": "2.1.0" -} +} \ No newline at end of file diff --git a/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/preferences.json b/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/preferences.json index 0916e151..89b3bbd0 100644 --- a/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/preferences.json +++ b/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/preferences.json @@ -1,13 +1,68 @@ -{ - "uc.minimal-sidebar.hide-alltabs-button.enabled": "Hide the alltabs button", - "uc.minimal-sidebar.hide-newtab-button.enabled": "Hide the newtab button", - "uc.minimal-sidebar.hide-profile-button.enabled": "Hide the profile button", - "uc.minimal-sidebar.hide-expand-sidebar-button.enabled": "Hide the expand sidebar button", - "uc.minimal-sidebar.hide-bookmark-button.enabled": "Hide the bookmarks button", - "uc.minimal-sidebar.hide-history-button.enabled": "Hide the history button", - "uc.minimal-sidebar.hide-preferences-button.enabled": "Hide the preferences button", - "uc.minimal-sidebar.hide-sidepanel-button.enabled": "Hide the sidepanel button", - "uc.minimal-sidebar.compact-spacing.enabled": "Make padding above the remaining buttons smaller", - "uc.minimal-sidebar.hide-sidebar.enabled": "Hide all sidebar buttons", - "uc.minimal-sidebar.fix-sidebar-width.enabled": "Fix sidebar width when you hide all buttons and workspaces" -} +[ + { + "property": "uc.minimal-sidebar.hide-alltabs-button.enabled", + "label": "Hide the alltabs button", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.minimal-sidebar.hide-newtab-button.enabled", + "label": "Hide the newtab button", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.minimal-sidebar.hide-profile-button.enabled", + "label": "Hide the profile button", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.minimal-sidebar.hide-expand-sidebar-button.enabled", + "label": "Hide the expand sidebar button", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.minimal-sidebar.hide-bookmark-button.enabled", + "label": "Hide the bookmarks button", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.minimal-sidebar.hide-history-button.enabled", + "label": "Hide the history button", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.minimal-sidebar.hide-preferences-button.enabled", + "label": "Hide the preferences button", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.minimal-sidebar.hide-sidepanel-button.enabled", + "label": "Hide the sidepanel button", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.minimal-sidebar.compact-spacing.enabled", + "label": "Make padding above the remaining buttons smaller", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.minimal-sidebar.hide-sidebar.enabled", + "label": "Hide all sidebar buttons", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.minimal-sidebar.fix-sidebar-width.enabled", + "label": "Fix sidebar width when you hide all buttons and workspaces", + "type": "checkbox", + "disabledOn": [] + } +] \ No newline at end of file diff --git a/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/preferences.json b/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/preferences.json index 55b4415d..3bf5cd26 100644 --- a/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/preferences.json +++ b/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/preferences.json @@ -1,15 +1,80 @@ -{ - "uc.pins.wide.disabled": "Disables the layout changes made by SuperPins", - "uc.pins.tall": "Increases the height of pinned tabs (Disabled when tab bar not expanded)", - "uc.pins.margins.compact": "Decreases the gap between pinned tabs", - "uc.pins.box-like-corners": "Makes the pinned tabs look more box like (Less rounded edges)", - "uc.pins.only-show-active": "Only shows loaded tabs when the tab bar is collapsed", - "uc.pins.only-show-active.on-hover": "Only shows loaded tabs when the tab bar is collapsed, except when hovering over them (Only works with the above option enabled!)", - "uc.pins.bg-color.pop": "Makes the colors of pinned tabs pop more", - "uc.pins.disable-bg-color": "Disables the background color of pinned tabs", - "uc.separator-line.hide": "Hides the seperator line between pinned tabs and the first normal tab", - "uc.workspace-button.remove-border": "Removes the border of the workspace button", - "uc.workspace-button.move-to-bottom": "Moves the workspace button to the bottom of the tab bar", - "browser.sessionstore.restore_pinned_tabs_on_demand": "Loads pinned tabs only when using them, instead of loading all of them on startup", - "zen.tabs.dim-pending": "Dims unloaded tabs" -} +[ + { + "property": "uc.pins.wide.disabled", + "label": "Disables the layout changes made by SuperPins", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.pins.tall", + "label": "Increases the height of pinned tabs (Disabled when tab bar not expanded)", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.pins.margins.compact", + "label": "Decreases the gap between pinned tabs", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.pins.box-like-corners", + "label": "Makes the pinned tabs look more box like (Less rounded edges)", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.pins.only-show-active", + "label": "Only shows loaded tabs when the tab bar is collapsed", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.pins.only-show-active.on-hover", + "label": "Only shows loaded tabs when the tab bar is collapsed, except when hovering over them (Only works with the above option enabled!)", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.pins.bg-color.pop", + "label": "Makes the colors of pinned tabs pop more", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.pins.disable-bg-color", + "label": "Disables the background color of pinned tabs", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.separator-line.hide", + "label": "Hides the seperator line between pinned tabs and the first normal tab", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.workspace-button.remove-border", + "label": "Removes the border of the workspace button", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.workspace-button.move-to-bottom", + "label": "Moves the workspace button to the bottom of the tab bar", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "browser.sessionstore.restore_pinned_tabs_on_demand", + "label": "Loads pinned tabs only when using them, instead of loading all of them on startup", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "zen.tabs.dim-pending", + "label": "Dims unloaded tabs", + "type": "checkbox", + "disabledOn": [] + } +] \ No newline at end of file diff --git a/themes/af7ee14f-e9d4-4806-8438-c59b02b77715/preferences.json b/themes/af7ee14f-e9d4-4806-8438-c59b02b77715/preferences.json index 990e0bac..10f7a3d8 100644 --- a/themes/af7ee14f-e9d4-4806-8438-c59b02b77715/preferences.json +++ b/themes/af7ee14f-e9d4-4806-8438-c59b02b77715/preferences.json @@ -1,11 +1,56 @@ -{ - "uc.supergradient.preset1": "Northern Horizen: A blue-green'ish gradient", - "uc.supergradient.preset2": "Scarlet Dusk: A red-yellow'ish gradient", - "uc.supergradient.preset3": "Amethyst Claret: A blue/purple-red'ish gradient", - "uc.supergradient.preset4": "Olive Sunset: A green-red'ish gradient", - "uc.supergradient.preset5": "Midnight Majesty: A yellow-purple'ish gradient", - "uc.supergradient.brighten": "Brightens the colors of the gradient", - "uc.supergradient.desaturate": "Desaturates the colors of the gradient", - "uc.supergradient.use-accent-color": "Uses Zen's accent colors (e.g. on tabs, set in Zen's Look and Feel setting) instead of accent colors adjusted for the gradient", - "uc.supergradient.switch-colors": "Switches the colors orders in the gradient" -} \ No newline at end of file +[ + { + "property": "uc.supergradient.preset1", + "label": "Northern Horizen: A blue-green'ish gradient", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.supergradient.preset2", + "label": "Scarlet Dusk: A red-yellow'ish gradient", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.supergradient.preset3", + "label": "Amethyst Claret: A blue/purple-red'ish gradient", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.supergradient.preset4", + "label": "Olive Sunset: A green-red'ish gradient", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.supergradient.preset5", + "label": "Midnight Majesty: A yellow-purple'ish gradient", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.supergradient.brighten", + "label": "Brightens the colors of the gradient", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.supergradient.desaturate", + "label": "Desaturates the colors of the gradient", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.supergradient.use-accent-color", + "label": "Uses Zen's accent colors (e.g. on tabs, set in Zen's Look and Feel setting) instead of accent colors adjusted for the gradient", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.supergradient.switch-colors", + "label": "Switches the colors orders in the gradient", + "type": "checkbox", + "disabledOn": [] + } +] \ No newline at end of file diff --git a/themes/bed8c922-616a-4165-8c86-6822ccf478ad/preferences.json b/themes/bed8c922-616a-4165-8c86-6822ccf478ad/preferences.json index 1c9593dc..eb172786 100644 --- a/themes/bed8c922-616a-4165-8c86-6822ccf478ad/preferences.json +++ b/themes/bed8c922-616a-4165-8c86-6822ccf478ad/preferences.json @@ -1,15 +1,80 @@ -{ - "uc.erics-zen-ui-tweak-box.exit-button-padding-right.enabled": "Adds some spacing to the right of the exit button", - "uc.erics-zen-ui-tweak-box.fun-colors.enabled": "Enables a cool gradient as the background", - "uc.erics-zen-ui-tweak-box.tab-bar-top-padding.enabled": "Removes the top padding from the tabs side panel so it's aligned with the page", - "uc.erics-zen-ui-tweak-box.page-canvas-shadows.enabled": "Adds shadows to the page canvas", - "uc.erics-zen-ui-tweak-box.remove-url-bar-border.enabled": "Removes the border around the URL Bar", - "uc.erics-zen-ui-tweak-box.url-bar-tweaks.enabled": "URL Bar appearance tweaks", - "uc.erics-zen-ui-tweak-box.floating-url-bar-tweaks.enabled": "Floating URL Bar appearance tweaks", - "uc.erics-zen-ui-tweak-box.new-tab-button-text.enabled": "New tab button text", - "uc.erics-zen-ui-tweak-box.new-tab-separator-when-no-unpinned-tabs.enabled": "Adds a separator before the new tab button if there are no unpinned tabs", - "uc.erics-zen-ui-tweak-box.pinned-tabs-layout.enabled": "Tweaks the layout of the pinned tabs", - "uc.erics-zen-ui-tweak-box.workspace-button-tweaks.enabled": "Tweaks the appearance of the workspace button", - "uc.erics-zen-ui-tweak-box.tab-button-tweaks.enabled": "Tweaks the appearance of the tab buttons", - "uc.erics-zen-ui-tweak-box.toolbar-button-tweaks.enabled": "Tweaks the appearance of the toolbar buttons" -} \ No newline at end of file +[ + { + "property": "uc.erics-zen-ui-tweak-box.exit-button-padding-right.enabled", + "label": "Adds some spacing to the right of the exit button", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.erics-zen-ui-tweak-box.fun-colors.enabled", + "label": "Enables a cool gradient as the background", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.erics-zen-ui-tweak-box.tab-bar-top-padding.enabled", + "label": "Removes the top padding from the tabs side panel so it's aligned with the page", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.erics-zen-ui-tweak-box.page-canvas-shadows.enabled", + "label": "Adds shadows to the page canvas", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.erics-zen-ui-tweak-box.remove-url-bar-border.enabled", + "label": "Removes the border around the URL Bar", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.erics-zen-ui-tweak-box.url-bar-tweaks.enabled", + "label": "URL Bar appearance tweaks", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.erics-zen-ui-tweak-box.floating-url-bar-tweaks.enabled", + "label": "Floating URL Bar appearance tweaks", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.erics-zen-ui-tweak-box.new-tab-button-text.enabled", + "label": "New tab button text", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.erics-zen-ui-tweak-box.new-tab-separator-when-no-unpinned-tabs.enabled", + "label": "Adds a separator before the new tab button if there are no unpinned tabs", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.erics-zen-ui-tweak-box.pinned-tabs-layout.enabled", + "label": "Tweaks the layout of the pinned tabs", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.erics-zen-ui-tweak-box.workspace-button-tweaks.enabled", + "label": "Tweaks the appearance of the workspace button", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.erics-zen-ui-tweak-box.tab-button-tweaks.enabled", + "label": "Tweaks the appearance of the tab buttons", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.erics-zen-ui-tweak-box.toolbar-button-tweaks.enabled", + "label": "Tweaks the appearance of the toolbar buttons", + "type": "checkbox", + "disabledOn": [] + } +] \ No newline at end of file diff --git a/themes/c5f7fb68-cc75-4df0-8b02-dc9ee13aa773/preferences.json b/themes/c5f7fb68-cc75-4df0-8b02-dc9ee13aa773/preferences.json index c0214daa..0faa1ba7 100644 --- a/themes/c5f7fb68-cc75-4df0-8b02-dc9ee13aa773/preferences.json +++ b/themes/c5f7fb68-cc75-4df0-8b02-dc9ee13aa773/preferences.json @@ -1,3 +1,8 @@ -{ - "uc.audio-tabicon.left-side": "Move the audio/mute icon to the left side" -} \ No newline at end of file +[ + { + "property": "uc.audio-tabicon.left-side", + "label": "Move the audio/mute icon to the left side", + "type": "checkbox", + "disabledOn": [] + } +] \ No newline at end of file diff --git a/themes/d8a9b9a4-30b7-48b5-99ad-448efa604f7e/preferences.json b/themes/d8a9b9a4-30b7-48b5-99ad-448efa604f7e/preferences.json index 29ab1e98..deab09d0 100644 --- a/themes/d8a9b9a4-30b7-48b5-99ad-448efa604f7e/preferences.json +++ b/themes/d8a9b9a4-30b7-48b5-99ad-448efa604f7e/preferences.json @@ -1,3 +1,8 @@ -{ - "uc.only-top-bar-compact.top-margin-on-reduced.enabled": "Enable top margin when top bar is reduced" -} +[ + { + "property": "uc.only-top-bar-compact.top-margin-on-reduced.enabled", + "label": "Enable top margin when top bar is reduced", + "type": "checkbox", + "disabledOn": [] + } +] \ No newline at end of file diff --git a/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/preferences.json b/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/preferences.json index be201260..58bbe97f 100644 --- a/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/preferences.json +++ b/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/preferences.json @@ -1,6 +1,26 @@ -{ - "uc.urlbar.border-radius": "Adjusts the border radius of the url bar and its items", - "uc.urltext.center": "Centers the text inside the url bar", - "uc.urlbar.border.removed": "Removes the border of the url bar", - "uc.urlbar.blur": "Blurs the background when the url bar is in focus" -} +[ + { + "property": "uc.urlbar.border-radius", + "label": "Adjusts the border radius of the url bar and its items", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.urltext.center", + "label": "Centers the text inside the url bar", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.urlbar.border.removed", + "label": "Removes the border of the url bar", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.urlbar.blur", + "label": "Blurs the background when the url bar is in focus", + "type": "checkbox", + "disabledOn": [] + } +] \ No newline at end of file diff --git a/themes/dd4f5461-1564-4e56-9f9d-f81e3c18f93c/preferences.json b/themes/dd4f5461-1564-4e56-9f9d-f81e3c18f93c/preferences.json index 17545a2b..b246cb72 100644 --- a/themes/dd4f5461-1564-4e56-9f9d-f81e3c18f93c/preferences.json +++ b/themes/dd4f5461-1564-4e56-9f9d-f81e3c18f93c/preferences.json @@ -1,4 +1,14 @@ -{ - "uc.zen-sidebar.pin-at-right-side": "Pin the Zen Sidebar at the right side when pinned.", - "uc.zen-sidebar.float-at-right-side": "Float the Zen Sidebar at the right side when floating." -} \ No newline at end of file +[ + { + "property": "uc.zen-sidebar.pin-at-right-side", + "label": "Pin the Zen Sidebar at the right side when pinned.", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.zen-sidebar.float-at-right-side", + "label": "Float the Zen Sidebar at the right side when floating.", + "type": "checkbox", + "disabledOn": [] + } +] \ No newline at end of file diff --git a/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/preferences.json b/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/preferences.json index 28d0a9eb..4b9a1842 100644 --- a/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/preferences.json +++ b/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/preferences.json @@ -1 +1,44 @@ -{"uc.bookmarks.center-toolbar": "Center the bookmarks toolbar", "uc.bookmarks.hide-folder-icons": "Hide folder icons", "uc.bookmarks.hide-favicons": "Hide website icons", "uc.bookmarks.hide-name": "Hide bookmarks name", "uc.bookmarks.expand-on-hover": "Expand the bookmarks toolbar by hovering", "uc.bookmarks.expand-on-search": "Expand the bookmarks toolbar when you search", "uc.bookmarks.transparent": "Make the bookmarks toolbar transparent (only works with expand features)"} \ No newline at end of file +[ + { + "property": "uc.bookmarks.center-toolbar", + "label": "Center the bookmarks toolbar", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.bookmarks.hide-folder-icons", + "label": "Hide folder icons", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.bookmarks.hide-favicons", + "label": "Hide website icons", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.bookmarks.hide-name", + "label": "Hide bookmarks name", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.bookmarks.expand-on-hover", + "label": "Expand the bookmarks toolbar by hovering", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.bookmarks.expand-on-search", + "label": "Expand the bookmarks toolbar when you search", + "type": "checkbox", + "disabledOn": [] + }, + { + "property": "uc.bookmarks.transparent", + "label": "Make the bookmarks toolbar transparent (only works with expand features)", + "type": "checkbox", + "disabledOn": [] + } +] \ No newline at end of file