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

Side by Side Diff: chrome/common/extensions/docs/templates/json/manifest.json

Issue 15842014: Doc Server Manifest Generation Followup Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Header absolute URL fix Created 7 years, 5 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
(Empty)
1 {
2 "required": [
3 {
4 "documentation": "manifest/name.html",
5 "example": {
6 "value": "My Extension"
7 },
8 "name": "name"
9 },
10 {
11 "documentation": "manifest/app.html",
12 "example": {
13 "value": {}
14 },
15 "name": "app"
16 },
17 {
18 "documentation": "manifest/version.html",
19 "example": {
20 "value": "versionString"
21 },
22 "name": "version"
23 },
24 {
25 "documentation": "manifest/manifest_version.html",
26 "example": {
27 "value": 2
28 },
29 "name": "manifest_version"
30 }
31 ],
32 "recommended": [
33 {
34 "documentation": "manifest/description.html",
35 "example": {
36 "value": "A plain text description"
37 },
38 "name": "description"
39 },
40 {
41 "documentation": "manifest/icons.html",
42 "example": {
43 "value": {}
44 },
45 "name": "icons"
46 },
47 {
48 "documentation": "manifest/default_locale.html",
49 "example": {
50 "value": "en"
51 },
52 "name": "default_locale"
53 }
54 ],
55 "only_one": [
56 {
57 "documentation": "browserAction.html",
58 "example": {
59 "value": {}
60 },
61 "name": "browser_action"
62 },
63 {
64 "documentation": "pageAction.html",
65 "example": {
66 "value": {}
67 },
68 "name": "page_action"
69 },
70 {
71 "documentation": "themes.html",
72 "example": {
73 "value": {}
74 },
75 "name": "theme"
76 }
77 ],
78 "optional": [
79 {
80 "documentation": "background_pages.html",
81 "example": {
82 "value": {
83 "persistent": true
84 }
85 },
86 "name": "background"
87 },
88 {
89 "documentation": "event_pages.html",
90 "example": {
91 "value": false
92 },
93 "name": "background.persistent"
94 },
95 {
96 "documentation": "override.html",
97 "example": {
98 "value": {}
99 },
100 "name": "chrome_url_overrides"
101 },
102 {
103 "documentation": "content_scripts.html",
104 "example": {
105 "value": {}
106 },
107 "name": "content_scripts"
108 },
109 {
110 "documentation": "contentSecurityPolicy.html",
111 "example": {
112 "value": "policyString"
113 },
114 "name": "content_security_policy"
115 },
116 {
117 "documentation": "fileBrowserHandler.html",
118 "example": {
119 "value": []
120 },
121 "name": "file_browser_handlers"
122 },
123 {
124 "documentation": "manifest/file_handlers.html",
125 "example": {
126 "value": {}
127 },
128 "name": "file_handlers"
129 },
130 {
131 "documentation": "manifest/homepage_url.html",
132 "example": {
133 "value": "http://path/to/homepage"
134 },
135 "name": "homepage_url"
136 },
137 {
138 "documentation": "manifest/incognito.html",
139 "example": {
140 "value": "spanning or split"
141 },
142 "name": "incognito"
143 },
144 {
145 "documentation": "manifest/key.html",
146 "example": {
147 "value": "publicKey"
148 },
149 "name": "key"
150 },
151 {
152 "documentation": "manifest/minimum_chrome_version.html",
153 "example": {
154 "value": "versionString"
155 },
156 "name": "minimum_chrome_version"
157 },
158 {
159 "documentation": "manifest/nacl_modules.html",
160 "example": {
161 "value": []
162 },
163 "name": "nacl_modules"
164 },
165 {
166 "documentation": "manifest/kiosk_enabled.html",
167 "example": {
168 "value": true
169 },
170 "name": "kiosk_enabled"
171 },
172 {
173 "documentation": "manifest/offline_enabled.html",
174 "example": {
175 "value": true
176 },
177 "name": "offline_enabled"
178 },
179 {
180 "documentation": "omnibox.html",
181 "example": {
182 "value": {
183 "keyword": "aString"
184 }
185 },
186 "name": "omnibox"
187 },
188 {
189 "documentation": "options.html",
190 "example": {
191 "value": "aFile.html"
192 },
193 "name": "options_page"
194 },
195 {
196 "documentation": "declare_permissions.html",
197 "example": {
198 "value": []
199 },
200 "name": "permissions"
201 },
202 {
203 "documentation": "npapi.html",
204 "example": {
205 "value": []
206 },
207 "name": "plugins"
208 },
209 {
210 "documentation": "manifest/requirements.html",
211 "example": {
212 "value": {}
213 },
214 "name": "requirements"
215 },
216 {
217 "documentation": "autoupdate.html",
218 "example": {
219 "value": "http://path/to/updateInfo.xml"
220 },
221 "name": "update_url"
222 },
223 {
224 "documentation": "manifest/web_accessible_resources.html",
225 "example": {
226 "value": []
227 },
228 "name": "web_accessible_resources"
229 },
230 {
231 "documentation": "manifest/sandbox.html",
232 "example": {
233 "value": []
234 },
235 "name": "sandbox"
236 },
237 {
238 "name": "app.background",
239 "annotation": "Optional"
240 }
241 ]
242 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698