Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

experimental #73

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions SuperUrlBar/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Super Url Bar

![image](https://raw.githubusercontent.com/JLBlk/Zen-Themes/refs/heads/main/SuperUrlBar/image.png)

## Supported Languages / Idiomas Suportados / Idiomas Soportados
- English
- Português do Brasil
- Español


## Settings:
Expand Down
20 changes: 20 additions & 0 deletions SuperUrlBar/locales/available-locales.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"available": [
{
"code": "en",
"name": "English",
"nativeName": "English"
},
{
"code": "pt-BR",
"name": "Brazilian Portuguese",
"nativeName": "Português do Brasil"
},
{
"code": "es",
"name": "Spanish",
"nativeName": "Español"
}
],
"default": "en"
}
186 changes: 186 additions & 0 deletions SuperUrlBar/locales/en/preferences.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,186 @@
[
{
"property": "uc.language",
"label": "Language / Idioma",
"type": "dropdown",
"defaultValue": "en",
"disabledOn": [],
"options": [
{
"label": "English",
"value": "en"
},
{
"label": "Português do Brasil",
"value": "pt-BR"
},
{
"label": "Español",
"value": "es"
}
]
},
{
"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": "dropdown",
"defaultValue": "normal",
"disabledOn": [],
"options": [
{
"label": "Centered unless focused",
"value": "normal"
},
{
"label": "Always Centered",
"value": "advanced"
}
]
},
{
"property": "uc.urlbar.border",
"label": "Adds a border to the url bar",
"type": "checkbox",
"disabledOn": []
},
{
"property": "uc.urlbar.move-icon-into",
"label": "Move 1 button that's directly next to the url bar (you can do that by using 'Customize Toolbar') into the url bar",
"type": "checkbox",
"disabledOn": []
},
{
"property": "uc.urlbar.blur-intensity",
"label": "Enable a Background Blur when the Url Bar is focused & select its Intensity",
"type": "dropdown",
"disabledOn": [],
"options": [
{
"label": "Subtle",
"value": "Subtle"
},
{
"label": "Normal",
"value": "Normal"
},
{
"label": "Rather Strong",
"value": "RatherStrong"
},
{
"label": "Strong",
"value": "Strong"
},
{
"label": "Really Strong",
"value": "ReallyStrong"
}
]
},
{
"property": "uc.urlbar.custom-bg-color.mode",
"label": "Enables Custom Colors for the Url Bar",
"placeholder": "Disabled",
"type": "dropdown",
"disabledOn": [],
"options": [
{
"label": "Coloring when url bar is in focus",
"value": "Focus"
},
{
"label": "Coloring when url bar is NOT in focus",
"value": "noFocus"
},
{
"label": "Always color url bar",
"value": "AlwaysColor"
}
]
},
{
"property": "uc.urlbar.custom-bg-color",
"label": "Custom Color for the Url Bar (Dropdown above needs to be enabled)",
"placeholder": "Enter Color Code",
"type": "string"
},
{
"property": "browser.urlbar.openintab",
"label": "Always open websites in a new tab when using url bar",
"type": "checkbox"
},
{
"property": "uc.urlbar.hide.container-info",
"label": "Hides the container info",
"type": "dropdown",
"placeholder": "Disabled",
"disabledOn": [],
"options": [
{
"label": "Only hide the label",
"value": "hideLabel"
},
{
"label": "Only hide the icon",
"value": "hideIcon"
},
{
"label": "Hide both, icon and label",
"value": "hideIconLabel"
}
]
},
{
"property": "uc.urlbar.icon.zoom.removed",
"label": "Hides the Zoom icon",
"type": "checkbox",
"disabledOn": []
},
{
"property": "uc.urlbar.icon.shield.removed",
"label": "Hides the Shield icon",
"type": "checkbox",
"disabledOn": []
},
{
"property": "uc.urlbar.icon.bookmark.removed",
"label": "Hides the Bookmark (Star) icon",
"type": "checkbox",
"disabledOn": []
},
{
"property": "uc.urlbar.icon.reader-mode.removed",
"label": "Hides the Reader-Mode icon",
"type": "checkbox",
"disabledOn": []
},
{
"property": "uc.urlbar.icon.pip.removed",
"label": "Hides the Picture-in-Picture icon",
"type": "checkbox",
"disabledOn": []
},
{
"property": "uc.urlbar.icon.split-view.removed",
"label": "Hides the Split View icon",
"type": "checkbox",
"disabledOn": []
},
{
"property": "uc.urlbar.icon.left-side.removed",
"label": "Hides all the icons/buttons on the left side",
"type": "checkbox",
"disabledOn": []
},
{
"property": "uc.urlbar.icon.show-on-hover",
"label": "Make all the hidden icons show when hovering the url bar",
"type": "checkbox"
}
]
Loading