.WEBMANIFEST

WEBMANIFEST-bestand

Web Application Manifest
Stel een vraag
SNEL ANTWOORD

Een .webmanifest-bestand is een klein JSON-tekstbestand dat een browser vertelt hoe een Progressive Web App moet worden geïnstalleerd en weergegeven, inclusief de naam, pictogrammen, start-URL en kleuren. Het wordt gekoppeld via de HTML van een webpagina en door de browser gelezen in plaats van direct geopend. Omdat het platte tekst is, kunt u het openen en bewerken in elke code-editor zoals Visual Studio Code, Sublime Text of Notepad.

Ontwikkelaar: W3C (Web Applications Working Group) Categorie: Internet-bestanden Open standaard MIME: application/manifest+json
OPENT OP Windows macOS Linux Web
Gerelateerd: .CRDOWNLOAD · .JNLP · .WEBARCHIVE · .PART

Op deze pagina

19k+ extensies geïndexeerd
Laatst beoordeeld op Aug 31, 2026

Niet zeker wat uw bestand is?

Sleep een bestand naar onze identificatietool - we lezen alleen de eerste bytes om het formaat te benoemen.

Identificeer een bestand

Wat is het WEBMANIFEST-bestandsformaat?

Een .webmanifest-bestand is het Web Application Manifest, een JSON-document dat een browser leest om een Progressive Web App (PWA) te installeren en weer te geven. Het bevat een enkel JSON-object waarvan de leden de app beschrijven: name, short_name, icons, start_url, scope, display, background_color en theme_color, onder andere. Wanneer u een PWA toevoegt aan het startscherm van een telefoon of een desktop, bepalen deze waarden het app-pictogram, de titel en hoe het venster wordt geopend.

Het formaat is een W3C-standaard, voor het eerst opgesteld in 2013 en ondersteund in browsers vanaf Chrome 45 in 2015. Een pagina verwijst ernaar in de HTML-head:

<link rel="manifest" href="/app.webmanifest">

Het geregistreerde mediatype is application/manifest+json. De extensie .webmanifest is de extensie die door IANA is geregistreerd, hoewel veel sites het bestand nog steeds manifest.json noemen. Beiden werken zolang de server een voor JSON geldig inhoudstype verzendt.

Beveiliging & veiligheid

RISICO: LOW

A .webmanifest file is plain-text JSON with no executable code, so opening it cannot run anything on your machine. The only practical risk is that a manifest can declare protocol_handlers or file_handlers that register a PWA to handle links or file types once the app is installed, which is a browser-mediated permission, not an action of opening the file. Editing an invalid manifest can break PWA installation but poses no security threat.

Formaatdetails

in een notendop
VOLLEDIGE NAAMWeb Application Manifestook bekend als Web App Manifest, PWA Manifest
ONTWIKKELAARW3C (Web Applications Working Group)sinds 2013 (first W3C Working Draft, December 17, 2013)
MIME-TYPEapplication/manifest+json
TYPEText-based JSON metadata file
STANDAARDOpen · royaltyvrij
Deze extensie wordt ook gebruikt door…
  • Firefox WebExtension manifest - Browser extensions use a manifest file, but it is named manifest.json with a .json extension, not .webmanifest.
  • Java JAR/app manifests - Unrelated MANIFEST.MF metadata inside Java archives; different format and purpose.

Programma's die WEBMANIFEST-bestanden openen

Windows4 apps
Sublime Text Betaald Edit the manifest as a JSON file with linting and formatting.
Notepad Ingebouwd Open and read the raw JSON text without any extra software.
Visual Studio Code Gratis Open the .webmanifest file to view and edit its JSON with syntax highlighting and JSON validation.
Google Chrome (DevTools) Gratis Load the PWA and use DevTools > Application > Manifest to parse and preview the manifest and its icons.
macOS3 apps
TextEdit Ingebouwd View or edit the manifest as plain text (switch to plain-text mode first).
BBEdit Freemium Open and edit the manifest with JSON syntax coloring.
Visual Studio Code Gratis Open and edit the JSON manifest with validation and formatting.
Linux3 apps
Vim Open-source Open and edit the raw JSON text from the terminal.
GNU Emacs Open-source Edit the manifest in json-mode with formatting support.
Visual Studio Code Gratis Open and edit the JSON manifest with validation.
Web1 app
PWA Manifest Generator (Progressier) Freemium Create or edit a manifest in the browser and export a ready-to-use .webmanifest file.

Technische details

diepe specificaties
EncodingUTF-8 text
Byte orderNot applicable (text)
ContainerJSON object with top-level keys called members
CompressionNone (may be gzip/brotli compressed in transit by the web server)
Typical sizeUnder 5 KB
StructureA single JSON object whose members describe a web application: name, short_name, description, icons (array of image objects with src, sizes, type), start_url, scope, display, orientation, background_color, theme_color, categories, screenshots, shortcuts, share_target, protocol_handlers, and file_handlers.
IntegrityNone built in; integrity relies on HTTPS transport and same-origin/CORS fetch rules
PlatformsWindows, macOS, Linux, Android, iOS, ChromeOS
NotesReferenced from a page's HTML head via <link rel="manifest" href="app.webmanifest">. The browser reads it to install a Progressive Web App, set the home-screen icon and name, and control the launch display mode. Servers should return it with the application/manifest+json media type, though browsers also accept application/json. When the manifest is on a different origin than the page scope it must be fetched with CORS.
Uitgebracht2013 (first W3C Working Draft, December 17, 2013)
Laatste versieW3C Working Draft (ongoing)
Open standaardJa · royaltyvrij
Specificatiewww.w3.org

WEBMANIFEST conversies

Community V&A

gevraagd door gebruikers
Stel een korte vraag
Krijg hulp van mensen die met WEBMANIFEST-bestanden werken. Wees specifiek - vermeld uw systeem en softwareversie.
Geen account nodig · antwoorden meestal binnen een dag

Nog geen vragen - wees de eerste om iets te vragen over WEBMANIFEST-bestanden.

Veelgestelde vragen

Hoe open ik een .webmanifest-bestand?
Open het in een willekeurige tekst- of code-editor, zoals Visual Studio Code, Sublime Text of Notepad. Omdat het JSON is, maakt een editor met JSON-ondersteuning het gemakkelijker om te lezen en fouten op te sporen.
Is .webmanifest hetzelfde als manifest.json?
De inhoud is identieke JSON. .webmanifest is de door IANA geregistreerde extensie, terwijl manifest.json een veelgebruikte alternatieve naam is. Browsers accepteren beide, zolang de server het serveert met een voor JSON geldig inhoudstype.
Waar wordt een .webmanifest-bestand voor gebruikt?
Het vertelt de browser hoe een Progressive Web App moet worden geïnstalleerd en weergegeven: de naam, pictogrammen, start-URL, weergavemodus en themakleuren. Er wordt naar verwezen vanuit de HTML-head van een pagina.
Waarom wordt mijn PWA niet geïnstalleerd?
Veelvoorkomende oorzaken zijn een ontbrekend of onjuist geformatteerd manifest, een verkeerd inhoudstype, geen gekoppelde pictogrammen van de vereiste formaten, of de pagina wordt niet via HTTPS geserveerd. Controleer DevTools > Application > Manifest in Chrome voor specifieke waarschuwingen.
Moet ik het serveren met een speciaal MIME-type?
Het aanbevolen type is application/manifest+json, maar browsers accepteren ook application/json. Het serveren van het juiste type voorkomt console-waarschuwingen en is „best practice”.
Kan ik een .webmanifest handmatig bewerken?
Ja. Het is gewoon JSON, dus u kunt het direct bewerken. Houd de syntaxis geldig en herlaad de app of wis de cache zodat de browser de wijzigingen oppikt.

Referenties

1W3C Web Application Manifest specificationwww.w3.org
2MDN - Web application manifestdeveloper.mozilla.org

Blijf ontdekken

door de database

Populaire extensies deze week

1.AQQAQQ Instant Messenger File
2.CRDOWNLOADChrome Partial Download File
3.MDMarkdown Document
4.BINCD/DVD Disc Image (BIN/CUE)
5.NOMEDIAAndroid No-Media Marker File
6.PARTPartial Download File
7.RPMSGRestricted Permission Message
8.EXEWindows Executable (Portable Executable)
9.DBSQLite Database File
10.AVIFAV1 Image File Format (AVIF)

Gerelateerde extensies

.CRDOWNLOADChrome Partial Download File
.JNLPJava Network Launch Protocol file
.WEBARCHIVESafari Web Archive
.PARTPartial Download File
.DOWNLOADPartial / Incomplete Download File
.ASPXActive Server Page Extended (ASP.NET Web Form)

Gratis bestandstools

Een bestandsidentificatie en afbeeldingsconverter in de browser - alles draait op uw eigen apparaat.

Open de gereedschapskist

Blader door bestandsextensies A-Z