מניפסט – מודולים של Nacl

מיפוי אחד או יותר מסוגי MIME למודול Native Client שמטפל בכל סוג. לדוגמה, הקוד המודגש בקטע הבא רושם מודול של Native Client כגורם המטפל בתוכן של סוג ה-MIME של הגיליון האלקטרוני OpenOffice.

{
  "name": "Native Client OpenOffice Spreadsheet Viewer",
  "version": "0.1",
  "description": "Open OpenOffice spreadsheets, right in your browser.",
  "nacl_modules": [{
    "path": "OpenOfficeViewer.nmf",
    "mime_type": "application/vnd.oasis.opendocument.spreadsheet"
  }]
}

הערך של "path" הוא המיקום של מניפסט Native Client (קובץ .nmf) בספריית התוספים. למידע נוסף על קובצי Native Client ו-.nmf, קראו את הסקירה הטכנית של Native Client.

אפשר לשייך כל סוג MIME לקובץ .nmf אחד בלבד, אבל קובץ .nmf יחיד עשוי לטפל במספר סוגי MIME. בדוגמה הבאה מוצג תוסף עם שני קובצי .nmf שתומכים בשלושה סוגי MIME.

{
  "name": "Spreadsheet Viewer",
  "version": "0.1",
  "description": "Open OpenOffice and Excel spreadsheets, right in your browser.",
  "nacl_modules": [{
    "path": "OpenOfficeViewer.nmf",
    "mime_type": "application/vnd.oasis.opendocument.spreadsheet"
  },
  {
    "path": "OpenOfficeViewer.nmf",
    "mime_type": "application/vnd.oasis.opendocument.spreadsheet-template"
  },
  {
    "path": "ExcelViewer.nmf",
    "mime_type": "application/excel"
  }]
}