| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 [ | 5 [ |
| 6 { | 6 { |
| 7 "namespace": "declarativeContent", | 7 "namespace": "declarativeContent", |
| 8 "description": "Use the <code>chrome.declarativeContent</code> API to take a
ctions depending on the content of a page, without requiring permission to read
the page's content.", | 8 "description": "Use the <code>chrome.declarativeContent</code> API to take a
ctions depending on the content of a page, without requiring permission to read
the page's content.", |
| 9 "compiler_options": {"use_movable_types": true}, |
| 9 "types": [ | 10 "types": [ |
| 10 { | 11 { |
| 11 "id": "ImageDataType", | 12 "id": "ImageDataType", |
| 12 "type": "binary", | 13 "type": "binary", |
| 13 "isInstanceOf": "ImageData", | 14 "isInstanceOf": "ImageData", |
| 14 "additionalProperties": { "type": "any" }, | 15 "additionalProperties": { "type": "any" }, |
| 15 "description": "See <a href=\"https://developer.mozilla.org/en-US/docs/W
eb/API/ImageData\">https://developer.mozilla.org/en-US/docs/Web/API/ImageData</a
>.", | 16 "description": "See <a href=\"https://developer.mozilla.org/en-US/docs/W
eb/API/ImageData\">https://developer.mozilla.org/en-US/docs/Web/API/ImageData</a
>.", |
| 16 "inline_doc": true | 17 "inline_doc": true |
| 17 }, | 18 }, |
| 18 { | 19 { |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 "actions": [ | 142 "actions": [ |
| 142 "declarativeContent.RequestContentScript", | 143 "declarativeContent.RequestContentScript", |
| 143 "declarativeContent.SetIcon", | 144 "declarativeContent.SetIcon", |
| 144 "declarativeContent.ShowPageAction" | 145 "declarativeContent.ShowPageAction" |
| 145 ] | 146 ] |
| 146 } | 147 } |
| 147 } | 148 } |
| 148 ] | 149 ] |
| 149 } | 150 } |
| 150 ] | 151 ] |
| OLD | NEW |