Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: extensions/common/api/extension_types.json

Issue 1055673002: [Extensions API] Remove inline enums (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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": "extensionTypes", 7 "namespace": "extensionTypes",
8 "description": "The <code>chrome.extensionTypes</code> API contains type dec larations for Chrome extensions.", 8 "description": "The <code>chrome.extensionTypes</code> API contains type dec larations for Chrome extensions.",
9 "types": [ 9 "types": [
10 { 10 {
11 "id": "ImageDetailsFormat",
12 "type": "string",
13 "enum": ["jpeg", "png"],
14 "description": "The format of an image."
15 },
16 {
11 "id": "ImageDetails", 17 "id": "ImageDetails",
12 "type": "object", 18 "type": "object",
13 "description": "Details about the format and quality of an image.", 19 "description": "Details about the format and quality of an image.",
14 "properties": { 20 "properties": {
15 "format": { 21 "format": {
16 "type": "string", 22 "$ref": "ImageDetailsFormat",
17 "optional": true, 23 "optional": true,
18 "enum": ["jpeg", "png"],
19 "description": "The format of the resulting image. Default is <code >\"jpeg\"</code>." 24 "description": "The format of the resulting image. Default is <code >\"jpeg\"</code>."
20 }, 25 },
21 "quality": { 26 "quality": {
22 "type": "integer", 27 "type": "integer",
23 "optional": true, 28 "optional": true,
24 "minimum": 0, 29 "minimum": 0,
25 "maximum": 100, 30 "maximum": 100,
26 "description": "When format is <code>\"jpeg\"</code>, controls the q uality of the resulting image. This value is ignored for PNG images. As qualit y is decreased, the resulting image will have more visual artifacts, and the num ber of bytes needed to store it will decrease." 31 "description": "When format is <code>\"jpeg\"</code>, controls the q uality of the resulting image. This value is ignored for PNG images. As qualit y is decreased, the resulting image will have more visual artifacts, and the num ber of bytes needed to store it will decrease."
27 } 32 }
28 } 33 }
29 }, 34 },
30 { 35 {
36 "id": "InjectDetailsRunAt",
37 "type": "string",
38 "enum": ["document_start", "document_end", "document_idle"],
39 "description": "The soonest that the JavaScript or CSS will be injected into the tab."
40 },
41 {
31 "id": "InjectDetails", 42 "id": "InjectDetails",
32 "type": "object", 43 "type": "object",
33 "description": "Details of the script or CSS to inject. Either the code or the file property must be set, but both may not be set at the same time.", 44 "description": "Details of the script or CSS to inject. Either the code or the file property must be set, but both may not be set at the same time.",
34 "properties": { 45 "properties": {
35 "code": {"type": "string", "optional": true, "description": "JavaScrip t or CSS code to inject.<br><br><b>Warning:</b><br>Be careful using the <code>co de</code> parameter. Incorrect use of it may open your extension to <a href=\"ht tps://en.wikipedia.org/wiki/Cross-site_scripting\">cross site scripting</a> atta cks."}, 46 "code": {"type": "string", "optional": true, "description": "JavaScrip t or CSS code to inject.<br><br><b>Warning:</b><br>Be careful using the <code>co de</code> parameter. Incorrect use of it may open your extension to <a href=\"ht tps://en.wikipedia.org/wiki/Cross-site_scripting\">cross site scripting</a> atta cks."},
36 "file": {"type": "string", "optional": true, "description": "JavaScrip t or CSS file to inject."}, 47 "file": {"type": "string", "optional": true, "description": "JavaScrip t or CSS file to inject."},
37 "allFrames": {"type": "boolean", "optional": true, "description": "If allFrames is <code>true</code>, implies that the JavaScript or CSS should be inj ected into all frames of current page. By default, it's <code>false</code> and i s only injected into the top frame."}, 48 "allFrames": {"type": "boolean", "optional": true, "description": "If allFrames is <code>true</code>, implies that the JavaScript or CSS should be inj ected into all frames of current page. By default, it's <code>false</code> and i s only injected into the top frame."},
38 "matchAboutBlank": {"type": "boolean", "optional": true, "description" : "If matchAboutBlank is true, then the code is also injected in about:blank and about:srcdoc frames if your extension has access to its parent document. Code c annot be inserted in top-level about:-frames. By default it is <code>false</code >."}, 49 "matchAboutBlank": {"type": "boolean", "optional": true, "description" : "If matchAboutBlank is true, then the code is also injected in about:blank and about:srcdoc frames if your extension has access to its parent document. Code c annot be inserted in top-level about:-frames. By default it is <code>false</code >."},
39 "runAt": { 50 "runAt": {
40 "type": "string", 51 "$ref": "InjectDetailsRunAt",
41 "optional": true, 52 "optional": true,
42 "enum": ["document_start", "document_end", "document_idle"],
43 "description": "The soonest that the JavaScript or CSS will be injec ted into the tab. Defaults to \"document_idle\"." 53 "description": "The soonest that the JavaScript or CSS will be injec ted into the tab. Defaults to \"document_idle\"."
44 } 54 }
45 } 55 }
46 } 56 }
47 ] 57 ]
48 } 58 }
49 ] 59 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698