Index: chrome/common/extensions/api/extension_api.json |
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json |
index 1fb9a7d955f1e5f003e803e817b6eba1ed0a5068..4ded7d2b45c4d86ed975dec35ac0b31ce808858f 100644 |
--- a/chrome/common/extensions/api/extension_api.json |
+++ b/chrome/common/extensions/api/extension_api.json |
@@ -9062,13 +9062,18 @@ |
{ |
"name": "saveAsMHTML", |
"type": "function", |
- "description": "Saves the content of the tab with given id to MHTML.", |
+ "description": "Saves the content of the tab with given id as MHTML.", |
"parameters": [ |
{ |
- "name": "tabId", |
- "type": "integer", |
- "minimum": 0, |
- "description": "The id of the tab to save." |
+ "name": "details", |
+ "type": "object", |
+ "properties": { |
+ "tabId": { |
+ "type": "integer", |
+ "minimum": 0, |
+ "description": "The id of the tab to save as MHTML." |
+ } |
+ } |
}, |
{ |
"name": "callback", |