| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "namespace": "extension", | 3 "namespace": "extension", |
| 4 "types": [ | 4 "types": [ |
| 5 { | 5 { |
| 6 "id": "Port", | 6 "id": "Port", |
| 7 "type": "object", | 7 "type": "object", |
| 8 "description": "An object which allows two way communication with other
pages.", | 8 "description": "An object which allows two way communication with other
pages.", |
| 9 "properties": { | 9 "properties": { |
| 10 "name": {"type": "string"}, | 10 "name": {"type": "string"}, |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 "parameters": [ | 111 "parameters": [ |
| 112 {"type": "integer", "name": "windowId", "optional": true} | 112 {"type": "integer", "name": "windowId", "optional": true} |
| 113 ], | 113 ], |
| 114 "returns": { | 114 "returns": { |
| 115 "type": "array", | 115 "type": "array", |
| 116 "description": "Array of global objects", | 116 "description": "Array of global objects", |
| 117 "items": { "type": "object" } | 117 "items": { "type": "object" } |
| 118 } | 118 } |
| 119 }, | 119 }, |
| 120 { | 120 { |
| 121 "name": "getTabContentses", | 121 "name": "getExtensionTabs", |
| 122 "type": "function", | 122 "type": "function", |
| 123 "description": "Returns an array of the global JavaScript objects for ea
ch of the tab contents views running inside the current extension. If windowId i
s specified, returns only the tab contentses attached to the specified window.", | 123 "description": "Returns an array of the global JavaScript objects for ea
ch of the tab contents views running inside the current extension. If windowId i
s specified, returns only the tab contentses attached to the specified window.", |
| 124 "parameters": [ | 124 "parameters": [ |
| 125 {"type": "integer", "name": "windowId", "optional": true} | 125 {"type": "integer", "name": "windowId", "optional": true} |
| 126 ], | 126 ], |
| 127 "returns": { | 127 "returns": { |
| 128 "type": "array", | 128 "type": "array", |
| 129 "description": "Array of global objects", | 129 "description": "Array of global objects", |
| 130 "items": { "type": "object" } | 130 "items": { "type": "object" } |
| 131 } | 131 } |
| (...skipping 1332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1464 "type": "function", | 1464 "type": "function", |
| 1465 "description": "Logs a message during internal unit testing.", | 1465 "description": "Logs a message during internal unit testing.", |
| 1466 "parameters": [ | 1466 "parameters": [ |
| 1467 {"type": "string", "name": "message"} | 1467 {"type": "string", "name": "message"} |
| 1468 ] | 1468 ] |
| 1469 } | 1469 } |
| 1470 ], | 1470 ], |
| 1471 "events": [] | 1471 "events": [] |
| 1472 } | 1472 } |
| 1473 ] | 1473 ] |
| OLD | NEW |