MIME türlerinden her türü işleyen Native Client modülüne bir veya daha fazla eşleme. Örneğin, Örneğin, aşağıdaki snippet'te kalın harflerle yazılmış kod, işleyicisi.
{
"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" (yol) değeri uzantı içindeki bir Native Client manifestinin (.nmf
dosyası) konumudur
dizin. Native Client ve .nmf
dosyaları hakkında daha fazla bilgi için bkz. Native Client Technical
Genel Bakış.
Her MIME türü yalnızca bir .nmf
dosyasıyla ilişkilendirilebilir, ancak tek bir .nmf
dosyası bunu işleyebilir
birden fazla MIME türü kullanabilir. Aşağıdaki örnekte,.nmf
üç MIME türü vardır.
{
"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"
}]
}