OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "namespace": "extension", | 3 "namespace": "extension", |
4 "types": [ | 4 "types": [ |
5 { | 5 { |
6 "id": "MessageSender", | 6 "id": "MessageSender", |
7 "type": "object", | 7 "type": "object", |
8 "description": "An object containing information about the script contex
t that sent a message or request.", | 8 "description": "An object containing information about the script contex
t that sent a message or request.", |
9 "properties": { | 9 "properties": { |
10 "tab": {"$ref": "Tab", "optional": true, "description":"This property
will <b>only</b> be present when the connection was opened from a tab or content
script."}, | 10 "tab": {"$ref": "Tab", "optional": true, "description":"This property
will <b>only</b> be present when the connection was opened from a tab or content
script."}, |
(...skipping 6877 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6888 "type": "string" | 6888 "type": "string" |
6889 }, | 6889 }, |
6890 "mayDisable": { | 6890 "mayDisable": { |
6891 "description": "Whether this extension can be disabled or uninstalle
d by the user.", | 6891 "description": "Whether this extension can be disabled or uninstalle
d by the user.", |
6892 "type": "boolean" | 6892 "type": "boolean" |
6893 }, | 6893 }, |
6894 "enabled": { | 6894 "enabled": { |
6895 "description": "Whether it is currently enabled or disabled.", | 6895 "description": "Whether it is currently enabled or disabled.", |
6896 "type": "boolean" | 6896 "type": "boolean" |
6897 }, | 6897 }, |
| 6898 "disabledReason": { |
| 6899 "description": "A reason the item is disabled.", |
| 6900 "type": "string", |
| 6901 "enum": ["unknown", "permissions_increase"], |
| 6902 "optional": true |
| 6903 }, |
6898 "isApp": { | 6904 "isApp": { |
6899 "description": "True if this is an app.", | 6905 "description": "True if this is an app.", |
6900 "type": "boolean" | 6906 "type": "boolean" |
6901 }, | 6907 }, |
6902 "appLaunchUrl": { | 6908 "appLaunchUrl": { |
6903 "description": "The launch url (only present for apps).", | 6909 "description": "The launch url (only present for apps).", |
6904 "type": "string", | 6910 "type": "string", |
6905 "optional": true | 6911 "optional": true |
6906 }, | 6912 }, |
6907 "homepageUrl": { | 6913 "homepageUrl": { |
(...skipping 2300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
9208 } | 9214 } |
9209 } | 9215 } |
9210 } | 9216 } |
9211 ] | 9217 ] |
9212 } | 9218 } |
9213 ] | 9219 ] |
9214 } | 9220 } |
9215 ] | 9221 ] |
9216 } | 9222 } |
9217 ] | 9223 ] |
OLD | NEW |