| OLD | NEW |
| (Empty) |
| 1 [ | |
| 2 { | |
| 3 "namespace": "app", | |
| 4 "nodoc": true, | |
| 5 "unprivileged": true, | |
| 6 "matches": [ "<all_urls>" ], | |
| 7 "types": [ | |
| 8 { | |
| 9 "id": "Details", | |
| 10 "description": "TODO (it's a manifest)", | |
| 11 "type": "object", | |
| 12 "properties": {}, | |
| 13 "additionalProperties": { "type": "any" } | |
| 14 }, | |
| 15 { | |
| 16 "id": "DOMWindow", | |
| 17 "type": "object", | |
| 18 "properties": {}, | |
| 19 "additionalProperties": { "type": "any" } | |
| 20 } | |
| 21 ], | |
| 22 "functions": [ | |
| 23 { | |
| 24 "name": "getIsInstalled", | |
| 25 "description": "TODO", | |
| 26 "type": "function", | |
| 27 "parameters": [], | |
| 28 "returns": { | |
| 29 "name": "isInstalled", | |
| 30 "description": "TODO", | |
| 31 "type": "boolean" | |
| 32 } | |
| 33 }, | |
| 34 { | |
| 35 "name": "install", | |
| 36 "description": "TODO", | |
| 37 "type": "function", | |
| 38 "parameters": [] | |
| 39 }, | |
| 40 { | |
| 41 "name": "getDetails", | |
| 42 "description": "TODO", | |
| 43 "type": "function", | |
| 44 "parameters": [], | |
| 45 "returns": { | |
| 46 "$ref": "Details", | |
| 47 "optional": true, | |
| 48 "description": "TODO" | |
| 49 } | |
| 50 }, | |
| 51 { | |
| 52 "name": "getDetailsForFrame", | |
| 53 "description": "TODO", | |
| 54 "type": "function", | |
| 55 "parameters": [ | |
| 56 { | |
| 57 "name": "frame", | |
| 58 "description": "TODO", | |
| 59 "$ref": "DOMWindow" | |
| 60 } | |
| 61 ], | |
| 62 "returns": { | |
| 63 "$ref": "Details", | |
| 64 "optional": true, | |
| 65 "description": "TODO" | |
| 66 } | |
| 67 } | |
| 68 ] | |
| 69 } | |
| 70 ] | |
| OLD | NEW |