| 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": "events", | 7 "namespace": "events", |
| 8 "description": "The <code>chrome.events</code> namespace contains common typ
es used by APIs dispatching events to notify you when something interesting happ
ens.", | 8 "description": "The <code>chrome.events</code> namespace contains common typ
es used by APIs dispatching events to notify you when something interesting happ
ens.", |
| 9 "compiler_options": { | 9 "compiler_options": { |
| 10 "implemented_in": "extensions/browser/api/declarative/declarative_api.h" | 10 "implemented_in": "extensions/browser/api/declarative/declarative_api.h" |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 "description": "Matches if the URL (without fragment identifier) con
tains a specified string. Port numbers are stripped from the URL if they match t
he default port number.", | 285 "description": "Matches if the URL (without fragment identifier) con
tains a specified string. Port numbers are stripped from the URL if they match t
he default port number.", |
| 286 "optional": true | 286 "optional": true |
| 287 }, | 287 }, |
| 288 "urlEquals": { | 288 "urlEquals": { |
| 289 "type": "string", | 289 "type": "string", |
| 290 "description": "Matches if the URL (without fragment identifier) is
equal to a specified string. Port numbers are stripped from the URL if they matc
h the default port number.", | 290 "description": "Matches if the URL (without fragment identifier) is
equal to a specified string. Port numbers are stripped from the URL if they matc
h the default port number.", |
| 291 "optional": true | 291 "optional": true |
| 292 }, | 292 }, |
| 293 "urlMatches": { | 293 "urlMatches": { |
| 294 "type": "string", | 294 "type": "string", |
| 295 "description": "Matches if the URL (without fragment identifier) mat
ches a specified regular expression. Port numbers are stripped from the URL if t
hey match the default port number. The regular expressions use the <a href=\"htt
p://code.google.com/p/re2/wiki/Syntax\">RE2 syntax</a>.", | 295 "description": "Matches if the URL (without fragment identifier) mat
ches a specified regular expression. Port numbers are stripped from the URL if t
hey match the default port number. The regular expressions use the <a href=\"htt
ps://github.com/google/re2/blob/master/doc/syntax.txt\">RE2 syntax</a>.", |
| 296 "optional": true | 296 "optional": true |
| 297 }, | 297 }, |
| 298 "originAndPathMatches": { | 298 "originAndPathMatches": { |
| 299 "type": "string", | 299 "type": "string", |
| 300 "description": "Matches if the URL without query segment and fragmen
t identifier matches a specified regular expression. Port numbers are stripped f
rom the URL if they match the default port number. The regular expressions use t
he <a href=\"http://code.google.com/p/re2/wiki/Syntax\">RE2 syntax</a>.", | 300 "description": "Matches if the URL without query segment and fragmen
t identifier matches a specified regular expression. Port numbers are stripped f
rom the URL if they match the default port number. The regular expressions use t
he <a href=\"https://github.com/google/re2/blob/master/doc/syntax.txt\">RE2 synt
ax</a>.", |
| 301 "optional": true | 301 "optional": true |
| 302 }, | 302 }, |
| 303 "urlPrefix": { | 303 "urlPrefix": { |
| 304 "type": "string", | 304 "type": "string", |
| 305 "description": "Matches if the URL (without fragment identifier) sta
rts with a specified string. Port numbers are stripped from the URL if they matc
h the default port number.", | 305 "description": "Matches if the URL (without fragment identifier) sta
rts with a specified string. Port numbers are stripped from the URL if they matc
h the default port number.", |
| 306 "optional": true | 306 "optional": true |
| 307 }, | 307 }, |
| 308 "urlSuffix": { | 308 "urlSuffix": { |
| 309 "type": "string", | 309 "type": "string", |
| 310 "description": "Matches if the URL (without fragment identifier) end
s with a specified string. Port numbers are stripped from the URL if they match
the default port number.", | 310 "description": "Matches if the URL (without fragment identifier) end
s with a specified string. Port numbers are stripped from the URL if they match
the default port number.", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 326 {"type": "array", "items": {"type": "integer"}, "description": "
A pair of integers identiying the start and end (both inclusive) of a port range
."} | 326 {"type": "array", "items": {"type": "integer"}, "description": "
A pair of integers identiying the start and end (both inclusive) of a port range
."} |
| 327 ] | 327 ] |
| 328 } | 328 } |
| 329 } | 329 } |
| 330 } | 330 } |
| 331 } | 331 } |
| 332 ] | 332 ] |
| 333 } | 333 } |
| 334 ] | 334 ] |
| 335 | 335 |
| OLD | NEW |