Browser-Tab-Manager/web/manifest.md

1.3 KiB

{ "name": "Browser Tab Manager", "short_name": "TabManager", "start_url": ".", "display": "standalone", "background_color": "#0175C2", "theme_color": "#0175C2", "description": "Manage browser tabs in a grid view", "orientation": "portrait-primary", "prefer_related_applications": false }

// This is the web app manifest file that defines how the app appears when installed on a device.

// The name field is the full application name shown to users.

// The short_name is used when there is limited space like on a home screen icon.

// The start_url tells the browser which page to load when the app launches.

// Display standalone makes the app look like a native app without browser UI.

// The background_color sets the splash screen color while the app loads.

// The theme_color defines the color of the browser toolbar and app header.

// Both colors use our app's primary blue color for consistent branding.

// The description explains what the app does for app stores and search results.

// Orientation is set to portrait-primary which works best for mobile devices.

// The prefer_related_applications flag set to false means we want users to install this web app.

// This file enables Progressive Web App features like installation and offline capabilities.