✅
PWA Bundle
1.1.x
1.1.x
  • PHPWA Bundle
  • How To Create A PWA?
  • How To Install/Remove A PWA?
  • Bundle Installation
  • Deployment
  • The Manifest
    • Application Information
      • Scope
      • ID
      • Direction and Language
      • Orientation
      • Description
      • IARC Rating ID
      • Categories
    • Icons
    • Screenshots
    • Shortcuts
    • Protocol Handlers
    • File Handlers
    • Share Target
    • Complete Example
  • The Service Worker
    • Configuration
    • Content Security Policy
    • Custom Service Worker Rule
    • Workbox
      • Site Manifest Cache
      • Asset Caching
      • Resource Caching
      • Image Caching
      • Font Caching
      • Offline Fallbacks
      • BackgoundSync
      • CDN and Versions
      • Cache Cleaning
      • Custom Cache Strategy
    • Push Notifications
    • Complete Example
  • Symfony UX
    • Connection Status
    • Prefetch on demand
    • Sync Broadcast
    • BackgroundSync Form
  • Image Management
    • Icons
    • Screenshots
  • Experimental Features
    • Non-Standard Parameters
      • Launch Handler
      • Display Override
      • Related Applications
      • EDGE Side Panel
    • Translations
    • Widgets (Win10+)
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
Export as PDF
  1. The Manifest
  2. Application Information

Categories

The categories member is a string list that describes the application categories to which the web application belongs. It is meant as a hint to catalogs or stores listing web applications and it is expected that these will make a best effort to find appropriate categories (or category) under which to list the web application. Like search engines and meta keywords, catalogs and stores are not required to honor this hint.

Manifest authors are encouraged to use lower-case.

/config/packages/pwa.yaml
pwa:
    manifest:
        enabled: true
        categories: ['games', 'kids']

List of known categories:

  • beauty

  • books

  • books & reference

  • business

  • cars

  • dating

  • design

  • developer

  • developer tools

  • development

  • education

  • entertainment

  • events

  • fashion

  • finance

  • fitness

  • food

  • fundraising

  • games

  • government

  • graphics

  • graphics & design

  • health

  • health & fitness

  • kids

  • lifestyle

  • magazines

  • medical

  • multimedia

  • multimedia design

  • music

  • navigation

  • network

  • networking

  • news

  • parenting

  • personalization

  • pets

  • photo

  • photo & video

  • politics

  • productivity

  • reference

  • security

  • shopping

  • social

  • social networking

  • sports

  • transportation

  • travel

  • utilities

  • video

  • weather

PreviousIARC Rating IDNextIcons

Was this helpful?