| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "parameters": [ | 88 "parameters": [ |
| 89 {"type": "integer", "name": "windowId", "optional": true} | 89 {"type": "integer", "name": "windowId", "optional": true} |
| 90 ], | 90 ], |
| 91 "returns": { | 91 "returns": { |
| 92 "type": "array", | 92 "type": "array", |
| 93 "description": "Array of global objects", | 93 "description": "Array of global objects", |
| 94 "items": { "type": "object" } | 94 "items": { "type": "object" } |
| 95 } | 95 } |
| 96 }, | 96 }, |
| 97 { | 97 { |
| 98 "name": "getTabContentses", | 98 "name": "getExtensionTabs", |
| 99 "type": "function", | 99 "type": "function", |
| 100 "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.", | 100 "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.", |
| 101 "parameters": [ | 101 "parameters": [ |
| 102 {"type": "integer", "name": "windowId", "optional": true} | 102 {"type": "integer", "name": "windowId", "optional": true} |
| 103 ], | 103 ], |
| 104 "returns": { | 104 "returns": { |
| 105 "type": "array", | 105 "type": "array", |
| 106 "description": "Array of global objects", | 106 "description": "Array of global objects", |
| 107 "items": { "type": "object" } | 107 "items": { "type": "object" } |
| 108 } | 108 } |
| (...skipping 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1259 "type": "function", | 1259 "type": "function", |
| 1260 "description": "Logs a message during internal unit testing.", | 1260 "description": "Logs a message during internal unit testing.", |
| 1261 "parameters": [ | 1261 "parameters": [ |
| 1262 {"type": "string", "name": "message"} | 1262 {"type": "string", "name": "message"} |
| 1263 ] | 1263 ] |
| 1264 } | 1264 } |
| 1265 ], | 1265 ], |
| 1266 "events": [] | 1266 "events": [] |
| 1267 } | 1267 } |
| 1268 ] | 1268 ] |
| OLD | NEW |