從 MIME 類型到處理每種類型的 Native Client 模組的一或多個對應。適用對象 例如,下列程式碼片段中的粗體程式碼會將 Native Client 模組註冊為內容 OpenOffice 試算表 MIME 類型的處理常式。
{
"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"
}]
}
注意:您可以在擴充功能中使用 Native Client 模組,不必指定「nacl_modules」。使用「nacl_modules」除非您希望瀏覽器使用 Native Client 模組顯示特定類型的內容。