halfPage/ext/manifest.json
wont-stream c894c6f440 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.
2025-04-10 13:53:31 -04:00

20 lines
No EOL
384 B
JSON

{
"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"
}
}