Add initial extension files for halfPage startpage

- Added icon image for the extension.
- Created manifest.json for extension configuration with permissions and new tab override.
- Implemented sidebar component with user settings for name, search engine, weather location, color scheme, and theme selection.
This commit is contained in:
wont-stream 2025-04-10 13:53:31 -04:00
parent 8de0faf8fa
commit c894c6f440
10 changed files with 166 additions and 61 deletions

BIN
ext/ext.unsigned.zip Normal file

Binary file not shown.

BIN
ext/icons/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 KiB

20
ext/manifest.json Normal file
View file

@ -0,0 +1,20 @@
{
"manifest_version": 3,
"name": "halfPage",
"description": "Use halfPage as your Startpage.",
"version": "0.0.1",
"browser_specific_settings": {
"gecko": {
"id": "halfPage@new-tab.ipv4.army"
}
},
"optional_permissions": [
"geolocation"
],
"icons": {
"64": "icons/icon.png"
},
"chrome_url_overrides": {
"newtab": "dist/index.html"
}
}