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": "scriptBadge", | 7 "namespace": "scriptBadge", |
8 "dependencies": [ "tabs" ], | |
9 "functions": [ | 8 "functions": [ |
10 { | 9 { |
11 "name": "setPopup", | 10 "name": "setPopup", |
12 "type": "function", | 11 "type": "function", |
13 "description": "Sets the html document to be opened as a popup when the
user clicks on the script badge's icon.", | 12 "description": "Sets the html document to be opened as a popup when the
user clicks on the script badge's icon.", |
14 "parameters": [ | 13 "parameters": [ |
15 { | 14 { |
16 "name": "details", | 15 "name": "details", |
17 "type": "object", | 16 "type": "object", |
18 "properties": { | 17 "properties": { |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 "parameters": [ | 79 "parameters": [ |
81 { | 80 { |
82 "name": "tab", | 81 "name": "tab", |
83 "$ref": "tabs.Tab" | 82 "$ref": "tabs.Tab" |
84 } | 83 } |
85 ] | 84 ] |
86 } | 85 } |
87 ] | 86 ] |
88 } | 87 } |
89 ] | 88 ] |
OLD | NEW |